Bitcoin Core 31.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
mempool_ephemeral_spends.cpp
Go to the documentation of this file.
1// Copyright (c) 2011-present 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
5#include <bench/bench.h>
6#include <consensus/amount.h>
7#include <kernel/cs_main.h>
9#include <policy/policy.h>
11#include <script/script.h>
12#include <sync.h>
14#include <test/util/txmempool.h>
15#include <txmempool.h>
16#include <util/check.h>
17
18#include <cstdint>
19#include <memory>
20#include <vector>
21
22
23static void AddTx(const CTransactionRef& tx, CTxMemPool& pool) EXCLUSIVE_LOCKS_REQUIRED(cs_main, pool.cs)
24{
25 int64_t nTime{0};
26 unsigned int nHeight{1};
28 bool spendsCoinbase{false};
29 unsigned int sigOpCost{4};
33 tx, fee, nTime, nHeight, sequence,
35}
36
38{
39 const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
40
41 int number_outputs{1000};
42 if (bench.complexityN() > 1) {
43 number_outputs = static_cast<int>(bench.complexityN());
44 }
45
46 // Tx with many outputs
48 tx1.vin.resize(1);
49 tx1.vout.resize(number_outputs);
50 for (size_t i = 0; i < tx1.vout.size(); i++) {
51 tx1.vout[i].scriptPubKey = CScript();
52 // Each output progressively larger
53 tx1.vout[i].nValue = i * CENT;
54 }
55
56 const auto& parent_txid = tx1.GetHash();
57
58 // Spends all outputs of tx1, other details don't matter
60 tx2.vin.resize(tx1.vout.size());
61 for (size_t i = 0; i < tx2.vin.size(); i++) {
62 tx2.vin[0].prevout.hash = parent_txid;
63 tx2.vin[0].prevout.n = i;
64 }
65 tx2.vout.resize(1);
66
67 CTxMemPool& pool = *Assert(testing_setup->m_node.mempool);
68 LOCK2(cs_main, pool.cs);
69 // Create transaction references outside the "hot loop"
72
73 AddTx(tx1_r, pool);
74
76
79
81
82 CheckEphemeralSpends({tx2_r}, /*dust_relay_rate=*/CFeeRate(iteration * COIN / 10), pool, dummy_state, dummy_wtxid);
83 iteration++;
84 });
85}
86
static constexpr CAmount COIN
The amount of satoshis in one BTC.
Definition amount.h:15
#define BENCHMARK(n)
Definition bench.h:68
#define Assert(val)
Identity function.
Definition check.h:113
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
CTxMemPoolEntry stores data about the corresponding transaction, as well as data about all in-mempool...
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Definition txmempool.h:187
RecursiveMutex cs
This mutex needs to be locked when accessing mapTx or other members that are guarded by it.
Definition txmempool.h:260
Main entry point to nanobench's benchmarking facility.
Definition nanobench.h:627
transaction_identifier represents the two canonical transaction identifier types (txid,...
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition cs_main.cpp:8
bool CheckEphemeralSpends(const Package &package, CFeeRate dust_relay_rate, const CTxMemPool &tx_pool, TxValidationState &out_child_state, Wtxid &out_child_wtxid)
Called for each transaction(package) if any dust is in the package.
static void AddTx(const CTransactionRef &tx, CTxMemPool &pool) EXCLUSIVE_LOCKS_REQUIRED(cs_main
unsigned int nHeight
static void MempoolCheckEphemeralSpends(benchmark::Bench &bench)
TryAddToMempool(pool, CTxMemPoolEntry(tx, fee, nTime, nHeight, sequence, spendsCoinbase, sigOpCost, lp))
uint64_t fee
bool spendsCoinbase
unsigned int sigOpCost
uint64_t sequence
LockPoints lp
static CTransactionRef MakeTransactionRef(Tx &&txIn)
std::shared_ptr< const CTransaction > CTransactionRef
static constexpr CAmount CENT
A mutable version of CTransaction.
std::vector< CTxIn > vin
#define LOCK2(cs1, cs2)
Definition sync.h:259
#define EXCLUSIVE_LOCKS_REQUIRED(...)
#define NO_THREAD_SAFETY_ANALYSIS
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
Definition time.h:73