9 #include <validation.h> 32 std::vector<Available> available_coins;
33 std::vector<CTransactionRef> ordered_coins;
35 size_t tx_counter = 1;
36 for (
auto x = 0; x < 100; ++x) {
40 tx.
vin[0].scriptWitness.stack.push_back(
CScriptNum(x).getvch());
42 for (
auto& out : tx.
vout) {
44 out.nValue = 10 *
COIN;
47 available_coins.emplace_back(ordered_coins.back(), tx_counter++);
49 for (
auto x = 0; x < childTxs && !available_coins.empty(); ++x) {
51 size_t n_ancestors = det_rand.
randrange(10)+1;
52 for (
size_t ancestor = 0; ancestor < n_ancestors && !available_coins.empty(); ++ancestor){
53 size_t idx = det_rand.
randrange(available_coins.size());
57 size_t n_to_take = det_rand.
randrange(2) == 0 ?
60 for (
size_t i = 0; i < n_to_take; ++i) {
61 tx.
vin.emplace_back();
67 coin = available_coins.back();
68 available_coins.pop_back();
71 for (
auto& out : tx.
vout) {
73 out.nValue = 10 *
COIN;
77 available_coins.emplace_back(ordered_coins.back(), tx_counter++);
89 std::vector<CTransactionRef> ordered_coins =
CreateOrderedCoins(det_rand, childTxs, 1);
94 for (
auto& tx : ordered_coins) {
97 pool.TrimToSize(pool.DynamicMemoryUsage() * 3 / 4);
108 testing_setup->PopulateMempool(det_rand, 400,
true);
109 const CCoinsViewCache& coins_tip = testing_setup.get()->m_node.chainman->ActiveChainstate().CoinsTip();
113 pool.check(coins_tip, 300);
std::shared_ptr< const CTransaction > CTransactionRef
#define NO_THREAD_SAFETY_ANALYSIS
static const std::string REGTEST
int64_t GetVirtualTransactionSize(int64_t nWeight, int64_t nSigOpCost, unsigned int bytes_per_sigop)
Compute the virtual transaction size (weight reinterpreted as bytes).
CTxMemPoolEntry stores data about the corresponding transaction, as well as data about all in-mempool...
static const std::string MAIN
Chain name strings.
Available(CTransactionRef &ref, size_t tx_count)
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
BENCHMARK(ComplexMemPool)
static std::vector< CTransactionRef > CreateOrderedCoins(FastRandomContext &det_rand, int childTxs, int min_ancestors)
Bench & complexityN(T b) noexcept
std::vector< unsigned char > getvch() const
static void MempoolCheck(benchmark::Bench &bench)
An outpoint - a combination of a transaction hash and an index n into its vout.
std::vector< CTxOut > vout
static CTransactionRef MakeTransactionRef(Tx &&txIn)
#define EXCLUSIVE_LOCKS_REQUIRED(...)
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Serialized script, used inside transaction inputs and outputs.
static void ComplexMemPool(benchmark::Bench &bench)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate...
A mutable version of CTransaction.
CTransactionRef get(const uint256 &hash) const
Main entry point to nanobench's benchmarking facility.
CCoinsView that adds a memory cache for transactions to another CCoinsView.
uint64_t randrange(uint64_t range) noexcept
Generate a random integer in the range [0..range).
static constexpr CAmount COIN
The amount of satoshis in one BTC.
static void AddTx(const CTransactionRef &tx, CTxMemPool &pool) EXCLUSIVE_LOCKS_REQUIRED(cs_main