6#ifndef ALT_INTEGRATION_INCLUDE_VERIBLOCK_STATE_UTILS_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_STATE_UTILS_HPP_
13#include "blockchain/blocktree.hpp"
14#include "state_manager.hpp"
15#include "validation_state.hpp"
20template <
typename Block_t,
typename ChainParams_t>
22 BlockTree<Block_t, ChainParams_t>& tree,
23 std::shared_ptr<
typename BlockRepository<BlockIndex<Block_t>>::cursor_t>
25 ValidationState& state) {
26 std::vector<BlockIndex<Block_t>> blocks;
28 for (cursor->seekToFirst(); cursor->isValid(); cursor->next()) {
29 blocks.push_back(cursor->value());
32 std::sort(blocks.begin(),
34 [](
const BlockIndex<Block_t>& block1,
35 const BlockIndex<Block_t>& block2) ->
bool {
36 return block1.height < block2.height;
39 for (
const auto& block : blocks) {
40 if (!tree.acceptBlock(block.header, state)) {
41 return state.addStackFunction(
"loadBlockTree()");