Bitcoin Core 31.99.0
P2P Digital Currency
mini_miner.cpp
Go to the documentation of this file.
1// Copyright (c) The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
6#include <test/fuzz/fuzz.h>
7#include <test/fuzz/util.h>
9#include <test/util/mining.h>
10#include <test/util/script.h>
12#include <test/util/time.h>
13#include <test/util/txmempool.h>
14
15#include <node/miner.h>
16#include <node/mini_miner.h>
17#include <node/types.h>
19#include <random.h>
20#include <txmempool.h>
21#include <util/check.h>
22#include <util/time.h>
23#include <util/translation.h>
24
25#include <deque>
26#include <vector>
27
28namespace {
29
30std::deque<COutPoint> g_available_coins;
31void initialize_miner()
32{
33 static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
34 for (uint32_t i = 0; i < uint32_t{100}; ++i) {
35 g_available_coins.emplace_back(Txid::FromUint256(uint256::ZERO), i);
36 }
37}
38
39// Test that the MiniMiner can run with various outpoints and feerates.
40FUZZ_TARGET(mini_miner, .init = initialize_miner)
41{
43 FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
45 bilingual_str error;
46 CTxMemPool pool{CTxMemPool::Options{}, error};
47 Assert(error.empty());
48 std::vector<COutPoint> outpoints;
49 std::deque<COutPoint> available_coins = g_available_coins;
50 LOCK2(::cs_main, pool.cs);
51 // Cluster size cannot exceed 500
52 LIMITED_WHILE(!available_coins.empty(), 100)
53 {
55 const size_t num_inputs = fuzzed_data_provider.ConsumeIntegralInRange<size_t>(1, available_coins.size());
56 const size_t num_outputs = fuzzed_data_provider.ConsumeIntegralInRange<size_t>(1, 50);
57 for (size_t n{0}; n < num_inputs; ++n) {
58 auto prevout = available_coins.front();
59 mtx.vin.emplace_back(prevout, CScript());
60 available_coins.pop_front();
61 }
62 for (uint32_t n{0}; n < num_outputs; ++n) {
63 mtx.vout.emplace_back(100, P2WSH_OP_TRUE);
64 }
69 TryAddToMempool(pool, entry.Fee(fee).FromTx(tx));
70
71 // All outputs are available to spend
72 for (uint32_t n{0}; n < num_outputs; ++n) {
74 available_coins.emplace_back(tx->GetHash(), n);
75 }
76 }
77
78 if (fuzzed_data_provider.ConsumeBool() && !tx->vout.empty()) {
79 // Add outpoint from this tx (may or not be spent by a later tx)
80 outpoints.emplace_back(tx->GetHash(),
81 (uint32_t)fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, tx->vout.size()));
82 } else {
83 // Add some random outpoint (will be interpreted as confirmed or not yet submitted
84 // to mempool).
85 auto outpoint = ConsumeDeserializable<COutPoint>(fuzzed_data_provider);
86 if (outpoint.has_value() && std::find(outpoints.begin(), outpoints.end(), *outpoint) == outpoints.end()) {
87 outpoints.push_back(*outpoint);
88 }
89 }
90
91 }
92
93 const CFeeRate target_feerate{CFeeRate{ConsumeMoney(fuzzed_data_provider, /*max=*/MAX_MONEY/1000)}};
94 std::optional<CAmount> total_bumpfee;
95 CAmount sum_fees = 0;
96 {
97 node::MiniMiner mini_miner{pool, outpoints};
98 assert(mini_miner.IsReadyToCalculate());
99 const auto bump_fees = mini_miner.CalculateBumpFees(target_feerate);
100 for (const auto& outpoint : outpoints) {
101 auto it = bump_fees.find(outpoint);
102 assert(it != bump_fees.end());
103 assert(it->second >= 0);
104 sum_fees += it->second;
105 }
106 assert(!mini_miner.IsReadyToCalculate());
107 }
108 {
109 node::MiniMiner mini_miner{pool, outpoints};
110 assert(mini_miner.IsReadyToCalculate());
111 total_bumpfee = mini_miner.CalculateTotalBumpFees(target_feerate);
112 assert(total_bumpfee.has_value());
113 assert(!mini_miner.IsReadyToCalculate());
114 }
115 // Overlapping ancestry across multiple outpoints can only reduce the total bump fee.
116 assert (sum_fees >= *total_bumpfee);
117}
118} // namespace
static constexpr CAmount MAX_MONEY
No amount larger than this (in satoshi) is valid.
Definition: amount.h:26
bool MoneyRange(const CAmount &nValue)
Definition: amount.h:27
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
TryAddToMempool(pool, CTxMemPoolEntry(tx, fee, 0, 1, 0, false, 4, lp))
#define Assert(val)
Identity function.
Definition: check.h:116
Fee rate in satoshis per virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac.
Definition: feerate.h:32
Serialized script, used inside transaction inputs and outputs.
Definition: script.h:405
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Definition: txmempool.h:187
T ConsumeIntegralInRange(T min, T max)
Helper to initialize the global NodeClock, let a duration elapse, and reset it after use in a test.
Definition: time.h:40
A minimal version of BlockAssembler, using the same ancestor set scoring algorithm.
Definition: mini_miner.h:79
static transaction_identifier FromUint256(const uint256 &id)
static const uint256 ZERO
Definition: uint256.h:204
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:8
#define FUZZ_TARGET(...)
Definition: fuzz.h:35
#define LIMITED_WHILE(condition, limit)
Can be used to limit a theoretically unbounded loop.
Definition: fuzz.h:22
uint64_t fee
Definition: basic.cpp:8
is a home for public enum and struct type definitions that are used internally by node code,...
static CTransactionRef MakeTransactionRef(Tx &&txIn)
Definition: transaction.h:404
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:403
A mutable version of CTransaction.
Definition: transaction.h:358
std::vector< CTxOut > vout
Definition: transaction.h:360
std::vector< CTxIn > vin
Definition: transaction.h:359
Definition: txmempool.h:19
CTxMemPoolEntry FromTx(const CMutableTransaction &tx) const
Definition: txmempool.cpp:34
TestMemPoolEntryHelper & Fee(CAmount _fee)
Definition: txmempool.h:33
Bilingual messages:
Definition: translation.h:24
bool empty() const
Definition: translation.h:35
Options struct containing options for constructing a CTxMemPool.
#define LOCK2(cs1, cs2)
Definition: sync.h:269
NodeSeconds ConsumeTime(FuzzedDataProvider &fuzzed_data_provider, const std::optional< int64_t > &min, const std::optional< int64_t > &max) noexcept
Definition: util.cpp:34
CAmount ConsumeMoney(FuzzedDataProvider &fuzzed_data_provider, const std::optional< CAmount > &max) noexcept
Definition: util.cpp:29
void SeedRandomStateForTest(SeedRand seedtype)
Seed the global RNG state for testing and log the seed value.
Definition: random.cpp:19
@ ZEROS
Seed with a compile time constant of zeros.
static const CScript P2WSH_OP_TRUE
Definition: script.h:13
assert(!tx.IsCoinBase())
FuzzedDataProvider & fuzzed_data_provider
Definition: fees.cpp:39