46#include <unordered_map>
54std::vector<COutPoint> g_outpoints_coinbase_init_mature;
60 lastRollingFeeUpdate =
GetTime();
61 blockSinceLastRollingFeeBump =
true;
65void initialize_tx_pool()
67 static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
73 .coinbase_output_script = P2WSH_EMPTY,
77 g_outpoints_coinbase_init_mature.push_back(prevout);
84 std::set<COutPoint>& m_mempool_outpoints;
86 explicit OutpointsUpdater(std::set<COutPoint>& r)
87 : m_mempool_outpoints{r} {}
94 for (uint32_t index{0}; index < tx.
info.
m_tx->vout.size(); ++index) {
102 for (
const auto& input : tx->vin) {
104 m_mempool_outpoints.insert(input.prevout);
107 for (uint32_t index{0}; index < tx->vout.size(); ++index) {
108 m_mempool_outpoints.erase(
COutPoint{tx->GetHash(), index});
114 std::set<CTransactionRef>& m_added;
116 explicit TransactionsDelta(std::set<CTransactionRef>& a)
136 std::numeric_limits<
decltype(chainstate.
m_chain.
Tip()->
nTime)>::max());
154 mempool_opts.check_ratio = 1;
159 auto mempool{std::make_unique<CTxMemPool>(std::move(mempool_opts), error)};
166std::unique_ptr<CTxMemPool> MakeEphemeralMempool(
const NodeContext&
node)
174 mempool_opts.require_standard =
true;
177 mempool_opts.min_relay_feerate =
CFeeRate(0);
181 auto mempool{std::make_unique<CTxMemPool>(std::move(mempool_opts), error)};
191std::optional<COutPoint> GetChildEvictingPrevout(
const CTxMemPool& tx_pool)
194 for (
const auto& tx_info : tx_pool.
infoAll()) {
195 const auto& entry = *
Assert(tx_pool.
GetEntry(tx_info.tx->GetHash()));
197 if (!dust_indexes.empty()) {
199 if (!children.empty()) {
200 Assert(children.size() == 1);
202 const auto& only_child = children.begin()->get().GetTx();
203 for (
const auto& tx_input : only_child.vin) {
204 if (tx_input.prevout.hash != tx_info.tx->GetHash()) {
205 return tx_input.prevout;
225 std::set<COutPoint> mempool_outpoints;
226 std::unordered_map<COutPoint, CAmount, SaltedOutpointHasher> outpoints_value;
227 for (
const auto& outpoint : g_outpoints_coinbase_init_mature) {
228 Assert(mempool_outpoints.insert(outpoint).second);
229 outpoints_value[outpoint] = 50 *
COIN;
232 auto outpoints_updater = std::make_shared<OutpointsUpdater>(mempool_outpoints);
233 node.validation_signals->RegisterSharedValidationInterface(outpoints_updater);
235 auto tx_pool_{MakeEphemeralMempool(
node)};
236 MockedTxPool& tx_pool = *
static_cast<MockedTxPool*
>(tx_pool_.get());
238 chainstate.SetMempool(&tx_pool);
241 Assert(!mempool_outpoints.empty());
243 std::vector<CTransactionRef> txs;
251 std::set<COutPoint> package_outpoints;
252 while (txs.size() < num_txs) {
254 txs.emplace_back([&] {
261 bool last_tx = num_txs > 1 && txs.size() == num_txs - 1;
262 const auto num_in = outpoint_to_rbf ? 2 :
267 auto& outpoints = last_tx ? package_outpoints : mempool_outpoints;
269 Assert((
int)outpoints.size() >= num_in && num_in > 0);
272 for (
int i = 0; i < num_in; ++i) {
275 auto pop = outpoints.begin();
277 auto outpoint = *pop;
279 if (i == 0 && outpoint_to_rbf) {
280 outpoint = *outpoint_to_rbf;
281 outpoints.erase(outpoint);
283 outpoints.erase(pop);
286 amount_in += outpoints_value.at(outpoint);
293 tx_mut.
vin.push_back(in);
297 const auto amount_out = (amount_in - amount_fee) / num_out;
298 for (
int i = 0; i < num_out; ++i) {
311 for (
const auto& in : tx->vin) {
315 for (
size_t i = 0; i < tx->vout.size(); ++i) {
316 package_outpoints.emplace(tx->GetHash(), i);
320 for (
size_t i = 0; i < tx->vout.size(); ++i) {
321 outpoints_value[
COutPoint(tx->GetHash(), i)] = tx->vout[i].nValue;
329 txs.back()->GetHash() :
334 if (tx_pool.exists(txid)) {
335 const auto tx_info{tx_pool.info(txid)};
336 if (
GetDust(*tx_info.tx, tx_pool.m_opts.dust_relay_feerate).empty()) {
337 tx_pool.PrioritiseTransaction(txid, delta);
342 auto single_submit = txs.size() == 1;
348 false, !single_submit));
354 const bool expect_valid{result_package.m_state.IsValid()};
358 node.validation_signals->SyncWithValidationInterfaceQueue();
363 node.validation_signals->UnregisterSharedValidationInterface(outpoints_updater);
365 WITH_LOCK(
::cs_main, tx_pool.check(chainstate.CoinsTip(), chainstate.m_chain.Height() + 1));
379 std::set<COutPoint> mempool_outpoints;
380 std::unordered_map<COutPoint, CAmount, SaltedOutpointHasher> outpoints_value;
381 for (
const auto& outpoint : g_outpoints_coinbase_init_mature) {
382 Assert(mempool_outpoints.insert(outpoint).second);
383 outpoints_value[outpoint] = 50 *
COIN;
386 auto outpoints_updater = std::make_shared<OutpointsUpdater>(mempool_outpoints);
387 node.validation_signals->RegisterSharedValidationInterface(outpoints_updater);
390 MockedTxPool& tx_pool = *
static_cast<MockedTxPool*
>(tx_pool_.get());
392 chainstate.SetMempool(&tx_pool);
395 Assert(!mempool_outpoints.empty());
397 std::vector<CTransactionRef> txs;
401 std::set<COutPoint> package_outpoints;
402 while (txs.size() < num_txs) {
404 txs.emplace_back([&] {
411 bool last_tx = num_txs > 1 && txs.size() == num_txs - 1;
415 auto& outpoints = last_tx ? package_outpoints : mempool_outpoints;
417 Assert(!outpoints.empty());
420 for (
size_t i = 0; i < num_in; ++i) {
423 auto pop = outpoints.begin();
425 const auto outpoint = *pop;
426 outpoints.erase(pop);
428 amount_in += outpoints_value.at(outpoint);
432 const auto script_sig =
CScript{};
441 tx_mut.
vin.push_back(in);
447 tx_mut.
vin.push_back(tx_mut.
vin.back());
452 tx_mut.
vin.emplace_back();
464 const auto amount_out = (amount_in - amount_fee) / num_out;
465 for (
int i = 0; i < num_out; ++i) {
471 for (
const auto& in : tx->vin) {
476 for (
size_t i = 0; i < tx->vout.size(); ++i) {
477 package_outpoints.emplace(tx->GetHash(), i);
481 for (
size_t i = 0; i < tx->vout.size(); ++i) {
482 outpoints_value[
COutPoint(tx->GetHash(), i)] = tx->vout[i].nValue;
492 tx_pool.RollingFeeUpdate();
496 txs.back()->GetHash() :
499 tx_pool.PrioritiseTransaction(txid, delta);
503 std::set<CTransactionRef> added;
504 auto txr = std::make_shared<TransactionsDelta>(added);
505 node.validation_signals->RegisterSharedValidationInterface(txr);
513 std::optional<CFeeRate> client_maxfeerate{};
519 return ProcessNewPackage(chainstate, tx_pool, txs, single_submit, client_maxfeerate));
524 false, !single_submit));
527 node.validation_signals->SyncWithValidationInterfaceQueue();
528 node.validation_signals->UnregisterSharedValidationInterface(txr);
532 Assert(passed != added.empty());
533 Assert(passed == res.m_state.IsValid());
535 Assert(added.size() == 1);
536 Assert(txs.back() == *added.begin());
542 const bool expect_valid{result_package.m_state.IsValid()};
546 Assert(result_package.m_tx_results.size() == txs.size() || result_package.m_tx_results.empty());
552 if (tx_pool.m_opts.require_standard) {
557 node.validation_signals->UnregisterSharedValidationInterface(outpoints_updater);
559 WITH_LOCK(
::cs_main, tx_pool.check(chainstate.CoinsTip(), chainstate.m_chain.Height() + 1));
int64_t CAmount
Amount in satoshis (Can be negative)
static constexpr CAmount COIN
The amount of satoshis in one BTC.
const TestingSetup * g_setup
#define Assert(val)
Identity function.
int64_t GetMedianTimePast() const
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
Fee rate in satoshis per virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac.
An outpoint - a combination of a transaction hash and an index n into its vout.
Serialized script, used inside transaction inputs and outputs.
static const uint32_t CURRENT_VERSION
An input of a transaction.
CScriptWitness scriptWitness
Only serialized through CTransaction.
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
std::vector< TxMempoolInfo > infoAll() const
std::vector< CTxMemPoolEntry::CTxMemPoolEntryRef > GetChildren(const CTxMemPoolEntry &entry) const
const CTxMemPoolEntry * GetEntry(const Txid &txid) const LIFETIMEBOUND EXCLUSIVE_LOCKS_REQUIRED(cs)
An output of a transaction.
Implement this to subscribe to events generated in validation and mempool.
virtual void TransactionRemovedFromMempool(const CTransactionRef &tx, MemPoolRemovalReason reason, uint64_t mempool_sequence)
Notifies listeners of a transaction leaving mempool.
virtual void TransactionAddedToMempool(const NewMempoolTransactionInfo &tx, uint64_t mempool_sequence)
Notifies listeners of a transaction having been added to mempool.
Chainstate stores and provides an API to update our local knowledge of the current best chain.
CChain m_chain
The current chain of blockheaders we consult and build on.
T ConsumeIntegralInRange(T min, T max)
LIMITED_WHILE(provider.remaining_bytes(), 10000)
static const int COINBASE_MATURITY
Coinbase transaction outputs can only be spent after this number of new blocks (network rule)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
MemPoolRemovalReason
Reason why a transaction was removed from the mempool, this is passed to the notification signal.
is used externally by mining IPC clients, so it should only declare simple data definitions.
@ PCKG_POLICY
The package itself is invalid (e.g. too many transactions).
unsigned int nBytesPerSigOp
std::vector< uint32_t > GetDust(const CTransaction &tx, CFeeRate dust_relay_rate)
Get the vout index numbers of all dust outputs.
static CTransactionRef MakeTransactionRef(Tx &&txIn)
std::shared_ptr< const CTransaction > CTransactionRef
A mutable version of CTransaction.
std::vector< CTxOut > vout
std::vector< std::vector< unsigned char > > stack
Testing setup that configures a complete environment.
const CTransactionRef m_tx
int64_t ancestor_count
The maximum allowed number of transactions in a package including the entry and its ancestors.
Options struct containing options for constructing a CTxMemPool.
CFeeRate dust_relay_feerate
NodeContext struct containing references to chain state and connection state.
std::unique_ptr< ValidationSignals > validation_signals
Issues calls about blocks and transactions.
std::unique_ptr< ChainstateManager > chainman
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
SeedRandomStateForTest(SeedRand::ZEROS)
NodeSeconds ConsumeTime(FuzzedDataProvider &fuzzed_data_provider, const std::optional< int64_t > &min, const std::optional< int64_t > &max) noexcept
uint32_t ConsumeSequence(FuzzedDataProvider &fuzzed_data_provider) noexcept
auto & PickValue(FuzzedDataProvider &fuzzed_data_provider, Collection &col)
COutPoint MineBlock(const NodeContext &node, const node::BlockCreateOptions &assembler_options)
Returns the generated coin.
@ ZEROS
Seed with a compile time constant of zeros.
static const std::vector< std::vector< uint8_t > > P2WSH_EMPTY_TRUE_STACK
static const std::vector< std::vector< uint8_t > > P2WSH_EMPTY_TWO_STACK
static const CScript P2WSH_EMPTY
void CheckMempoolTRUCInvariants(const CTxMemPool &tx_pool)
For every transaction in tx_pool, check TRUC invariants:
CTxMemPool::Options MemPoolOptionsForTest(const NodeContext &node)
std::optional< std::string > CheckPackageMempoolAcceptResult(const Package &txns, const PackageMempoolAcceptResult &result, bool expect_valid, const CTxMemPool *mempool)
Check expected properties for every PackageMempoolAcceptResult, regardless of value.
void CheckMempoolEphemeralInvariants(const CTxMemPool &tx_pool)
Check that we never get into a state where an ephemeral dust transaction would be mined without the s...
#define EXCLUSIVE_LOCKS_REQUIRED(...)
static constexpr decltype(CTransaction::version) TRUC_VERSION
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
PackageMempoolAcceptResult ProcessNewPackage(Chainstate &active_chainstate, CTxMemPool &pool, const Package &package, bool test_accept, const std::optional< CFeeRate > &client_maxfeerate)
Validate (and maybe submit) a package to the mempool.
MempoolAcceptResult AcceptToMemoryPool(Chainstate &active_chainstate, const CTransactionRef &tx, int64_t accept_time, bool bypass_limits, bool test_accept)
Try to add a transaction to the mempool.
FuzzedDataProvider & fuzzed_data_provider