veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
storage.hpp
1
// Copyright (c) 2019-2022 Xenios SEZC
2
// https://www.veriblock.org
3
// Distributed under the MIT software license, see the accompanying
4
// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6
#ifndef VERIBLOCK_POP_CPP_STORAGER_HPP
7
#define VERIBLOCK_POP_CPP_STORAGER_HPP
8
9
#include "storage/adaptors/block_provider_impl.hpp"
10
#include "storage/adaptors/ethash_cache_provider_impl.hpp"
11
#include "storage/adaptors/inmem_storage_impl.hpp"
12
#include "storage/adaptors/payloads_provider_impl.hpp"
13
#include "storage/adaptors/progpow_header_cache_provider_impl.hpp"
14
#include "storage/adaptors/storage_interface.hpp"
15
#include "storage/block_batch.hpp"
16
#include "storage/block_iterator.hpp"
17
#include "storage/block_reader.hpp"
18
#include "storage/ethash_cache_provider.hpp"
19
#include "storage/payloads_provider.hpp"
20
#include "storage/progpow_header_cache_provider.hpp"
21
#include "storage/util.hpp"
22
23
#endif
// VERIBLOCK_POP_CPP_STORAGER_HPP