5#include <chainparams.h>
18#include <validation.h>
28 .extra_args = {
"-testactivationheight=bip34@2"},
33 test_setup.LoadVerifyActivateChainstate();
34 auto&
node{test_setup.m_node};
35 auto& chainman{*
Assert(test_setup.m_node.chainman)};
38 const auto ActiveHeight = [&]() {
39 LOCK(chainman.GetMutex());
40 return chainman.ActiveHeight();
42 BlockAssembler::Options options;
44 const auto PrepareNextBlock = [&]() {
57 auto current_block = PrepareNextBlock();
59 std::vector<std::pair<COutPoint, CTxOut>> txos;
67 const auto StoreLastTxo = [&]() {
71 const uint32_t i = tx.
vout.size() - 1;
74 if (current_block->vtx.size() == 1 && tx.
vout.at(i).scriptPubKey[0] ==
OP_RETURN) {
76 const uint32_t i = tx.
vout.size() - 2;
82 tx.vin.emplace_back(txo.first);
83 tx.vout.emplace_back(txo.second.nValue, txo.second.scriptPubKey);
85 const auto UpdateUtxoStats = [&]() {
86 LOCK(chainman.GetMutex());
87 chainman.ActiveChainstate().ForceFlushStateToDisk();
88 utxo_stats = std::move(
98 assert(ActiveHeight() == 0);
104 const CScript duplicate_coinbase_script =
CScript() << duplicate_coinbase_height <<
OP_0;
106 current_block = PrepareNextBlock();
112 tx.
vin.at(0).scriptSig = duplicate_coinbase_script;
121 assert(ActiveHeight() == 1);
123 current_block = PrepareNextBlock();
131 fuzzed_data_provider,
151 const auto prev_utxo_stats = utxo_stats;
153 if (duplicate_coinbase_height == ActiveHeight()) {
155 assert(current_block->vtx.at(0)->vin.at(0).scriptSig == duplicate_coinbase_script);
168 current_block = PrepareNextBlock();
int64_t CAmount
Amount in satoshis (Can be negative)
const CChainParams & Params()
Return the currently selected parameters.
#define Assert(val)
Identity function.
An outpoint - a combination of a transaction hash and an index n into its vout.
Serialized script, used inside transaction inputs and outputs.
The basic transaction that is broadcasted on the network and contained in blocks.
const std::vector< CTxOut > vout
const Txid & GetHash() const LIFETIMEBOUND
T ConsumeIntegralInRange(T min, T max)
Generate a new block, without valid proof-of-work.
#define LIMITED_WHILE(condition, limit)
Can be used to limit a theoretically unbounded loop.
uint256 BlockMerkleRoot(const CBlock &block, bool *mutated)
static bool ComputeUTXOStats(CCoinsView *view, CCoinsStats &stats, T hash_obj, const std::function< void()> &interruption_point)
Calculate statistics about the unspent transaction output set.
void RegenerateCommitments(CBlock &block, ChainstateManager &chainman)
Update an old GenerateCoinbaseCommitment from CreateNewBlock after the block txs have changed.
static CTransactionRef MakeTransactionRef(Tx &&txIn)
A mutable version of CTransaction.
std::vector< CTxOut > vout
Testing setup that performs all steps up until right before ChainstateManager gets initialized.
std::optional< CAmount > total_amount
The total amount, or nullopt if an overflow occurred calculating it.
size_t CallOneOf(FuzzedDataProvider &fuzzed_data_provider, Callables... callables)
std::shared_ptr< CBlock > PrepareBlock(const NodeContext &node, const BlockAssembler::Options &assembler_options)
COutPoint MineBlock(const NodeContext &node, const node::BlockAssembler::Options &assembler_options)
Returns the generated coin.
void SeedRandomStateForTest(SeedRand seedtype)
Seed the global RNG state for testing and log the seed value.
@ ZEROS
Seed with a compile time constant of zeros.
FUZZ_TARGET(utxo_total_supply)
CAmount GetBlockSubsidy(int nHeight, const Consensus::Params &consensusParams)