veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
state_utils.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 ALT_INTEGRATION_INCLUDE_VERIBLOCK_STATE_UTILS_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_STATE_UTILS_HPP_
8
9#include <algorithm>
10#include <memory>
11#include <vector>
12
13#include "blockchain/blocktree.hpp"
14#include "state_manager.hpp"
15#include "validation_state.hpp"
16
17namespace altintegration {
18
20template <typename Block_t, typename ChainParams_t>
21bool loadBlockTree(
22 BlockTree<Block_t, ChainParams_t>& tree,
23 std::shared_ptr<typename BlockRepository<BlockIndex<Block_t>>::cursor_t>
24 cursor,
25 ValidationState& state) {
26 std::vector<BlockIndex<Block_t>> blocks;
27
28 for (cursor->seekToFirst(); cursor->isValid(); cursor->next()) {
29 blocks.push_back(cursor->value());
30 }
31
32 std::sort(blocks.begin(),
33 blocks.end(),
34 [](const BlockIndex<Block_t>& block1,
35 const BlockIndex<Block_t>& block2) -> bool {
36 return block1.height < block2.height;
37 });
38
39 for (const auto& block : blocks) {
40 if (!tree.acceptBlock(block.header, state)) {
41 return state.addStackFunction("loadBlockTree()");
42 }
43 }
44
45 return true;
46}
47
48} // namespace altintegration
49
50#endif
Defines logging helpers.
Definition: block.hpp:14