5#include <chainparams.h>
24#include <validation.h>
44 "-testactivationheight=bip34@2",
49 test_setup.LoadVerifyActivateChainstate();
50 auto&
node{test_setup.m_node};
51 auto& chainman{*
Assert(test_setup.m_node.chainman)};
53 const auto ActiveHeight = [&]() {
54 LOCK(chainman.GetMutex());
55 return chainman.ActiveHeight();
57 const auto PrepareNextBlock = [&]() {
73 auto current_block = PrepareNextBlock();
75 std::vector<std::pair<COutPoint, CTxOut>> txos;
83 const auto StoreLastTxo = [&]() {
87 const uint32_t i = tx.
vout.size() - 1;
90 if (current_block->vtx.size() == 1 && tx.
vout.at(i).scriptPubKey[0] ==
OP_RETURN) {
92 const uint32_t i = tx.
vout.size() - 2;
98 tx.vin.emplace_back(txo.first);
99 tx.vout.emplace_back(txo.second.nValue, txo.second.scriptPubKey);
101 const auto UpdateUtxoStats = [&](
bool wipe_cache) {
102 LOCK(chainman.GetMutex());
103 chainman.ActiveChainstate().ForceFlushStateToDisk(wipe_cache);
104 utxo_stats = std::move(
114 assert(ActiveHeight() == 0);
121 CScript duplicate_coinbase_script =
CScript() << duplicate_coinbase_height;
122 if (duplicate_coinbase_height <= 16) {
123 duplicate_coinbase_script <<
OP_0;
126 current_block = PrepareNextBlock();
132 tx.
vin.at(0).scriptSig = duplicate_coinbase_script;
141 assert(ActiveHeight() == 1);
143 current_block = PrepareNextBlock();
173 if (duplicate_coinbase_height == ActiveHeight()) {
175 assert(current_block->vtx.at(0)->vin.at(0).scriptSig == duplicate_coinbase_script);
188 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)
Helper to initialize the global NodeClock, let a duration elapse, and reset it after use in a test.
uint256 BlockMerkleRoot(const CBlock &block, bool *mutated)
#define LIMITED_WHILE(condition, limit)
Can be used to limit a theoretically unbounded loop.
static std::optional< CCoinsStats > ComputeUTXOStats(T hash_obj, CCoinsView *view, node::BlockManager &blockman, 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.
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.
NodeSeconds ConsumeTime(FuzzedDataProvider &fuzzed_data_provider, const std::optional< int64_t > &min, const std::optional< int64_t > &max) noexcept
size_t CallOneOf(FuzzedDataProvider &fuzzed_data_provider, Callables... callables)
std::shared_ptr< CBlock > PrepareBlock(const NodeContext &node, const node::BlockCreateOptions &assembler_options)
Prepare a block to be mined.
COutPoint MineBlock(const NodeContext &node, const node::BlockCreateOptions &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)
FuzzedDataProvider & fuzzed_data_provider