6#ifndef VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_PROGPOW_HEADER_CACHE_PROVIDER_IMPL_HPP
7#define VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_PROGPOW_HEADER_CACHE_PROVIDER_IMPL_HPP
9#include <veriblock/pop/storage/progpow_header_cache_provider.hpp>
10#include <veriblock/pop/validation_state.hpp>
12#include "storage_interface.hpp"
18const char DB_PROGPOW_HEADER_PREFIX =
'!';
20inline std::vector<uint8_t> key_bytes(
const uint256& key) {
21 auto res = key.asVector();
22 res.insert(res.begin(), DB_PROGPOW_HEADER_PREFIX);
32 std::vector<uint8_t> bytes_out;
33 if (!storage_.read(key_bytes(key), bytes_out)) {
42 storage_.write(key_bytes(key), value.asVector());
Blob< SHA256_HASH_SIZE > uint256
This is an overloaded member function, provided for convenience. It differs from the above function o...