6#ifndef ALTINTEGRATION_MEMPOOL_BLOCK_TREE_HPP
7#define ALTINTEGRATION_MEMPOOL_BLOCK_TREE_HPP
11#include <unordered_map>
12#include <veriblock/pop/mempool_relations.hpp>
14#include "alt_block_tree.hpp"
15#include "temp_block_tree.hpp"
16#include "veriblock/pop/blob.hpp"
17#include "veriblock/pop/blockchain/pop/vbk_block_tree.hpp"
18#include "veriblock/pop/uint.hpp"
19#include "veriblock/pop/validation_state.hpp"
29struct MemPoolBlockTree {
32 MemPoolBlockTree(AltBlockTree& tree)
33 : temp_vbk_tree_(tree.vbk()), temp_btc_tree_(tree.btc()), tree_(&tree) {}
35 bool acceptVbkBlock(
const std::shared_ptr<VbkBlock>& blk,
36 ValidationState& state);
38 bool acceptVTB(
const VTB& vtb,
39 const std::shared_ptr<VbkBlock>& containingBlock,
40 ValidationState& state);
42 bool acceptATV(
const ATV& atv,
43 const std::shared_ptr<VbkBlock>& blockOfProof,
44 ValidationState& state);
46 bool checkContextually(
const ATV& atv, ValidationState& state);
47 bool checkContextually(
const VTB& vtb, ValidationState& state);
48 bool checkContextually(
const VbkBlock& block, ValidationState& state);
50 bool isBlockOld(
const VbkBlock& block)
const;
60 bool areStronglyEquivalent(
const ATV& atv1,
const ATV& atv2);
70 bool areStronglyEquivalent(
const VTB& vtb1,
const VTB& vtb2);
80 bool areWeaklyEquivalent(
const VTB& vtb1,
const VTB& vtb2);
91 int weaklyCompare(
const VTB& vtb1,
const VTB& vtb2);
93 TempBlockTree<VbkBlockTree>& vbk() {
return temp_vbk_tree_; }
95 const TempBlockTree<VbkBlockTree>& vbk()
const {
return temp_vbk_tree_; }
97 TempBlockTree<BtcBlockTree>& btc() {
return temp_btc_tree_; }
99 const TempBlockTree<BtcBlockTree>& btc()
const {
return temp_btc_tree_; }
103 void filterInvalidPayloads(
105 const std::function<
void(
const ATV&,
const ValidationState&)>& onATV,
106 const std::function<
void(
const VTB&,
const ValidationState&)>& onVTB,
107 const std::function<
void(
const VbkBlock&,
const ValidationState&)>&
110 AltBlockTree& alt() {
return *tree_; }
112 const AltBlockTree& alt()
const {
return *tree_; }
115 temp_btc_tree_.cleanUpStaleBlocks();
116 temp_vbk_tree_.cleanUpStaleBlocks();
120 temp_btc_tree_.clear();
121 temp_vbk_tree_.clear();
125 TempBlockTree<VbkBlockTree> temp_vbk_tree_;
126 TempBlockTree<BtcBlockTree> temp_btc_tree_;
BlockTree< BtcBlock, BtcChainParams > BtcBlockTree
Bitcoin tree.