6#ifndef VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_ETHASH_CACHE_PROVIDER_IMPL_HPP
7#define VERIBLOCK_POP_CPP_STORAGE_ADAPTORS_ETHASH_CACHE_PROVIDER_IMPL_HPP
9#include <veriblock/pop/storage/ethash_cache_provider.hpp>
10#include <veriblock/pop/validation_state.hpp>
12#include "storage_interface.hpp"
18const char DB_ETHASH_PREFIX =
'&';
20inline std::vector<uint8_t> epoch_bytes(uint64_t epoch) {
23 auto res = write.data();
24 res.insert(res.begin(), DB_ETHASH_PREFIX);
33 bool get(uint64_t epoch, std::shared_ptr<CacheEntry> out)
const override {
34 std::vector<uint8_t> bytes_out;
35 if (!storage_.read(epoch_bytes(epoch), bytes_out)) {
48 void insert(uint64_t epoch, std::shared_ptr<CacheEntry> value)
override {
50 value->toVbkEncoding(write);
52 storage_.write(epoch_bytes(epoch), write.data());
Class that is used for storing validation state.
Binary writer that is useful for binary serialization.
bool DeserializeFromVbkEncoding(ReadStream &stream, AltBlockAddon &out, ValidationState &state)
This is an overloaded member function, provided for convenience. It differs from the above function o...
Binary reading stream, that is useful during binary deserialization.