6#ifndef ALT_INTEGRATION_VERIBLOCK_MOCK_MINER_2_HPP
7#define ALT_INTEGRATION_VERIBLOCK_MOCK_MINER_2_HPP
10#include <unordered_map>
14#include "blockchain/blocktree.hpp"
15#include "blockchain/miner.hpp"
16#include "blockchain/pop/vbk_block_tree.hpp"
17#include "bootstraps.hpp"
18#include "entities/atv.hpp"
19#include "entities/btcblock.hpp"
20#include "entities/merkle_tree.hpp"
21#include "entities/vbkblock.hpp"
22#include "entities/vbktx.hpp"
23#include "entities/vtb.hpp"
24#include "storage/adaptors/block_provider_impl.hpp"
25#include "storage/adaptors/inmem_storage_impl.hpp"
26#include "storage/adaptors/payloads_provider_impl.hpp"
32std::vector<typename T::hash_t> hashAll(
const std::vector<T>& txs) {
33 std::vector<typename T::hash_t> hashes(txs.size());
34 for (
size_t i = 0; i < hashes.size(); i++) {
35 hashes[i] = txs[i].getHash();
43 using btc_block_tree = BlockTree<BtcBlock, BtcChainParams>;
44 using vbk_block_tree = VbkBlockTree;
47 PopData endorseAltBlock(
const PublicationData& publicationData,
48 const VbkBlock::hash_t& lastKnownVbkBlockHash);
50 VTB endorseVbkBlock(
const VbkBlock& publishedBlock,
51 const BtcBlock::hash_t& lastKnownBtcBlockHash);
53 VbkPopTx createVbkPopTxEndorsingVbkBlock(
54 const VbkBlock& publishedBlock,
55 const BtcBlock::hash_t& lastKnownBtcBlockHash);
57 PopData createPopDataEndorsingAltBlock(
58 const VbkBlock& blockOfProof,
60 const VbkBlock::hash_t& lastKnownVbkBlockHash)
const;
62 ATV createATV(
const VbkBlock& blockOfProof,
const VbkTx& tx)
const;
64 VbkTx createVbkTxEndorsingAltBlockWithSourceAmount(
65 const PublicationData& publicationData,
const Coin& sourceAmount)
const;
67 VbkTx createVbkTxEndorsingAltBlock(
68 const PublicationData& publicationData)
const;
70 VTB createVTB(
const VbkBlock& containingBlock,
const VbkPopTx& tx)
const;
72 VbkPopTx createVbkPopTxEndorsingVbkBlock(
73 const BtcBlock& blockOfProof,
75 const VbkBlock& publishedBlock,
76 const BtcBlock::hash_t& lastKnownBtcBlockHash)
const;
78 BtcTx createBtcTxEndorsingVbkBlock(
const VbkBlock& publishedBlock)
const;
80 BlockIndex<VbkBlock>* mineVbkBlocks(
size_t amount);
81 BlockIndex<VbkBlock>* mineVbkBlocks(
size_t amount,
82 const BlockIndex<VbkBlock>& tip);
83 BlockIndex<VbkBlock>* mineVbkBlocks(
size_t amount,
84 const std::vector<VbkTx>& txs,
85 const std::vector<VbkPopTx>& pop_txs);
86 BlockIndex<VbkBlock>* mineVbkBlocks(
size_t amount,
87 const std::vector<VbkTx>& txs);
88 BlockIndex<VbkBlock>* mineVbkBlocks(
size_t amount,
89 const std::vector<VbkPopTx>& pop_txs);
90 BlockIndex<VbkBlock>* mineVbkBlocks(
size_t amount,
91 const BlockIndex<VbkBlock>& tip,
92 const std::vector<VbkTx>& txs,
93 const std::vector<VbkPopTx>& pop_txs);
94 BlockIndex<VbkBlock>* mineVbkBlocks(
size_t amount,
95 const BlockIndex<VbkBlock>& tip,
96 const std::vector<VbkTx>& txs);
97 BlockIndex<VbkBlock>* mineVbkBlocks(
size_t amount,
98 const BlockIndex<VbkBlock>& tip,
99 const std::vector<VbkPopTx>& pop_txs);
101 BlockIndex<BtcBlock>* mineBtcBlocks(
size_t amount,
102 const std::vector<BtcTx>& txs = {});
103 BlockIndex<BtcBlock>* mineBtcBlocks(
size_t amount,
104 const BlockIndex<BtcBlock>& tip,
105 const std::vector<BtcTx>& txs = {});
107 const BlockIndex<VbkBlock>* vbkTip()
const;
108 const BlockIndex<BtcBlock>* btcTip()
const;
110 const BlockIndex<VbkBlock>* getVbkBlockIndex(
111 const VbkBlock::hash_t& hash)
const;
112 const BlockIndex<BtcBlock>* getBtcBlockIndex(
113 const BtcBlock::hash_t& hash)
const;
115 std::vector<VTB> getVTBs(
const VbkBlock& block)
const;
116 const std::unordered_map<VbkBlock::hash_t, std::vector<VTB>>& getAllVTBs()
119 vbk_block_tree& vbk() {
return vbk_tree_; }
120 btc_block_tree& btc() {
return btc_tree_; }
121 const vbk_block_tree& vbk()
const {
return vbk_tree_; }
122 const btc_block_tree& btc()
const {
return btc_tree_; }
123 const VbkChainParams& vbkParams()
const {
return vbk_params_; }
124 const BtcChainParams& btcParams()
const {
return btc_params_; }
126 MockMiner(
const AltChainParams& alt_config,
127 const VbkChainParams& vbk_config,
128 const BtcChainParams& btc_config)
129 : alt_params_(alt_config),
130 vbk_params_(vbk_config),
131 btc_params_(btc_config) {
136 adaptors::InmemStorageImpl& getStorage() {
return storage_; }
139 template <
typename BlockTree,
typename Block>
140 static std::vector<Block> getBlocks(
143 const typename Block::hash_t& lastKnownHash);
145 template <
typename BlockTree,
typename Block>
146 static BlockIndex<Block>* acceptBlock(BlockTree& tree,
const Block& block);
148 BlockIndex<VbkBlock>* mineBlocks(
size_t amount,
149 const BlockIndex<VbkBlock>& tip,
150 const std::vector<VbkTx>& txs,
151 const std::vector<VbkPopTx>& pop_txs);
153 BlockIndex<BtcBlock>* mineBlocks(
size_t amount,
154 const BlockIndex<BtcBlock>& tip,
155 const std::vector<BtcTx>& txs);
157 BlockIndex<VbkBlock>* mineBlock(
const BlockIndex<VbkBlock>& tip,
158 const std::vector<VbkTx>& txs);
160 BlockIndex<VbkBlock>* mineBlock(
const BlockIndex<VbkBlock>& tip,
161 const std::vector<VbkPopTx>& txs);
163 BlockIndex<VbkBlock>* mineBlock(
const BlockIndex<VbkBlock>& tip,
164 const std::vector<VbkTx>& txs,
165 const std::vector<VbkPopTx>& pop_txs);
167 BlockIndex<BtcBlock>* mineBlock(
const BlockIndex<BtcBlock>& tip,
168 const std::vector<BtcTx>& txs);
170 bool saveVTBs(BlockIndex<VbkBlock>* blockIndex,
171 const std::vector<VbkPopTx>& txs);
173 VbkMerklePath getMerklePath(
const VbkBlock& block,
175 VbkMerkleTree::TreeIndex treeIndex)
const;
176 MerklePath getMerklePath(
const BtcBlock& block,
const uint256& txHash)
const;
178 const AltChainParams& alt_params_;
179 const VbkChainParams& vbk_params_;
180 const BtcChainParams& btc_params_;
181 adaptors::InmemStorageImpl storage_{};
182 adaptors::PayloadsStorageImpl payloads_provider_{storage_};
183 adaptors::BlockReaderImpl block_provider_{storage_, alt_params_};
185 Miner<BtcBlock, BtcChainParams> btc_miner_{btc_params_};
186 Miner<VbkBlock, VbkChainParams> vbk_miner_{vbk_params_};
188 vbk_block_tree vbk_tree_{
189 vbk_params_, btc_params_, payloads_provider_, block_provider_};
190 btc_block_tree& btc_tree_ = vbk_tree_.btc();
192 std::unordered_map<VbkBlock::hash_t, std::vector<VTB>> vtbs_;
193 std::unordered_map<VbkBlock::hash_t, VbkMerkleTree> vbk_merkle_trees_;
194 std::unordered_map<BtcBlock::hash_t, BtcMerkleTree> btc_merkle_trees_;
BtcBlock GetRegTestBtcBlock()
Getter for regtest BTC network genesis block.
VbkBlock GetRegTestVbkBlock()
Getter for regtest_progpow VBK network genesis block.
Blob< SHA256_HASH_SIZE > uint256
This is an overloaded member function, provided for convenience. It differs from the above function o...