32 while (!staged_ancestors.empty()) {
33 const auto stage = staged_ancestors.begin()->get();
35 txiter stageit = mapTx.find(stage->GetTx().GetId());
36 assert(stageit != mapTx.end());
37 setAncestors.insert(stageit);
38 staged_ancestors.erase(staged_ancestors.begin());
41 (*stageit)->GetMemPoolParentsConst();
42 for (
const auto &parent : parents) {
43 txiter parent_it = mapTx.find(parent.get()->GetTx().GetId());
44 assert(parent_it != mapTx.end());
47 if (setAncestors.count(parent_it) == 0) {
48 staged_ancestors.insert(parent);
58 bool fSearchForParents )
const {
60 const CTransaction &tx = entry->GetTx();
62 if (fSearchForParents) {
66 for (
const CTxIn &in : tx.vin) {
67 std::optional<txiter> piter =
GetIter(in.prevout.GetTxId());
71 staged_ancestors.insert(**piter);
76 staged_ancestors = entry->GetMemPoolParentsConst();
84 for (
const auto &parent : (*it)->GetMemPoolParentsConst()) {
85 auto parent_it = mapTx.find(parent.get()->GetTx().GetId());
86 assert(parent_it != mapTx.end());
93 (*it)->GetMemPoolChildrenConst();
94 for (
const auto &child : children) {
95 auto updateIt = mapTx.find(child.get()->GetTx().GetId());
96 assert(updateIt != mapTx.end());
102 for (
txiter removeIt : entriesToRemove) {
112 for (
txiter removeIt : entriesToRemove) {
118 : m_check_ratio(opts.check_ratio),
121 m_max_size_bytes{opts.max_size_bytes}, m_expiry{opts.expiry},
122 m_min_relay_feerate{opts.min_relay_feerate},
123 m_dust_relay_feerate{opts.dust_relay_feerate},
124 m_permit_bare_multisig{opts.permit_bare_multisig},
125 m_max_datacarrier_bytes{opts.max_datacarrier_bytes},
126 m_require_standard{opts.require_standard} {
135 return mapNextTx.count(outpoint);
148 entry->SetEntryId(nextEntryId++);
154 entry->UpdateFeeDelta(feeDelta);
159 auto [newit, inserted] = mapTx.insert(entry);
170 cachedInnerUsage += entry->DynamicMemoryUsage();
173 std::set<TxId> setParentTransactions;
174 for (
const CTxIn &in : tx->vin) {
175 mapNextTx.insert(std::make_pair(&in.prevout, tx));
176 setParentTransactions.insert(in.prevout.GetTxId());
183 for (
const auto &pit :
GetIterSet(setParentTransactions)) {
190 totalTxSize += entry->GetTxSize();
191 m_total_fee += entry->GetFee();
199 const TxId &txid = (*it)->GetTx().GetId();
207 (*it)->GetSharedTx(), reason, mempool_sequence);
210 totalFinalizedTxSize -= removed_tx->GetTxSize();
211 totalFinalizedTxSigchecks -= removed_tx->GetSigChecks();
215 for (
const CTxIn &txin : (*it)->GetTx().vin) {
216 mapNextTx.erase(txin.prevout);
222 totalTxSize -= (*it)->GetTxSize();
223 m_total_fee -= (*it)->GetFee();
224 cachedInnerUsage -= (*it)->DynamicMemoryUsage();
241 if (setDescendants.count(entryit) == 0) {
242 stage.insert(entryit);
247 while (!stage.empty()) {
248 txiter it = *stage.begin();
249 setDescendants.insert(it);
250 stage.erase(stage.begin());
253 (*it)->GetMemPoolChildrenConst();
254 for (
const auto &child : children) {
255 txiter childiter = mapTx.find(child.get()->GetTx().GetId());
256 assert(childiter != mapTx.end());
258 if (!setDescendants.count(childiter)) {
259 stage.insert(childiter);
270 txiter origit = mapTx.find(origTx.GetId());
271 if (origit != mapTx.end()) {
272 txToRemove.insert(origit);
278 auto it = mapNextTx.lower_bound(COutPoint(origTx.GetId(), 0));
279 while (it != mapNextTx.end() &&
280 it->first->GetTxId() == origTx.GetId()) {
281 txiter nextit = mapTx.find(it->second->GetId());
282 assert(nextit != mapTx.end());
283 txToRemove.insert(nextit);
289 for (
txiter it : txToRemove) {
299 for (
const CTxIn &txin : tx.vin) {
300 auto it = mapNextTx.find(txin.prevout);
301 if (it != mapNextTx.end()) {
302 const CTransaction &txConflict = *it->second;
303 if (txConflict != tx) {
317 lastRollingFeeUpdate =
GetTime();
318 blockSinceLastRollingFeeBump =
true;
322 const std::vector<CTransactionRef> &vtx) {
325 for (
const auto &tx : vtx) {
331 totalFinalizedTxSize -= removed_tx->GetTxSize();
332 totalFinalizedTxSigchecks -= removed_tx->GetSigChecks();
342 cachedInnerUsage = 0;
343 lastRollingFeeUpdate =
GetTime();
344 blockSinceLastRollingFeeBump =
false;
345 rollingMinimumFeeRate = 0;
355 int64_t spendheight)
const {
367 "Checking mempool with %u transactions and %u inputs\n",
368 (
unsigned int)mapTx.size(), (
unsigned int)mapNextTx.size());
370 uint64_t checkTotal = 0;
372 uint64_t innerUsage = 0;
378 checkTotal += entry->GetTxSize();
379 check_total_fee += entry->GetFee();
380 innerUsage += entry->DynamicMemoryUsage();
381 const CTransaction &tx = entry->GetTx();
386 for (
const CTxIn &txin : tx.vin) {
389 txiter parentIt = mapTx.find(txin.prevout.GetTxId());
390 if (parentIt != mapTx.end()) {
391 const CTransaction &parentTx = (*parentIt)->GetTx();
392 assert(parentTx.vout.size() > txin.prevout.GetN() &&
393 !parentTx.vout[txin.prevout.GetN()].IsNull());
394 setParentCheck.insert(*parentIt);
397 assert((*parentIt)->GetEntryId() < entry->GetEntryId());
403 assert(mempoolDuplicate.HaveCoin(txin.prevout));
405 auto prevoutNextIt = mapNextTx.find(txin.prevout);
406 assert(prevoutNextIt != mapNextTx.end());
407 assert(prevoutNextIt->first == &txin.prevout);
408 assert(prevoutNextIt->second.get() == &tx);
410 auto comp = [](
const auto &a,
const auto &b) ->
bool {
411 return a.get()->GetTx().GetId() == b.get()->GetTx().GetId();
413 assert(setParentCheck.size() == entry->GetMemPoolParentsConst().size());
414 assert(std::equal(setParentCheck.begin(), setParentCheck.end(),
415 entry->GetMemPoolParentsConst().begin(), comp));
425 for (
const auto &ancestor : setAncestors) {
426 assert((*ancestor)->GetEntryId() < entry->GetEntryId());
431 auto iter = mapNextTx.lower_bound(COutPoint(entry->GetTx().GetId(), 0));
432 for (; iter != mapNextTx.end() &&
433 iter->first->GetTxId() == entry->GetTx().GetId();
435 txiter childIt = mapTx.find(iter->second->GetId());
437 assert(childIt != mapTx.end());
438 setChildrenCheck.insert(*childIt);
440 assert(setChildrenCheck.size() ==
441 entry->GetMemPoolChildrenConst().size());
442 assert(std::equal(setChildrenCheck.begin(), setChildrenCheck.end(),
443 entry->GetMemPoolChildrenConst().begin(), comp));
450 spendheight, txfee));
451 for (
const auto &input : tx.vin) {
452 mempoolDuplicate.SpendCoin(input.prevout);
454 AddCoins(mempoolDuplicate, tx, std::numeric_limits<int>::max());
457 for (
auto &[
_, nextTx] : mapNextTx) {
458 txiter it = mapTx.find(nextTx->GetId());
459 assert(it != mapTx.end());
460 assert((*it)->GetSharedTx() == nextTx);
463 assert(totalTxSize == checkTotal);
464 assert(m_total_fee == check_total_fee);
465 assert(innerUsage == cachedInnerUsage);
469 const TxId &txidb)
const {
471 auto it1 = mapTx.find(txida);
472 if (it1 == mapTx.end()) {
475 auto it2 = mapTx.find(txidb);
476 if (it2 == mapTx.end()) {
479 return (*it1)->GetEntryId() < (*it2)->GetEntryId();
486 vtxid.reserve(mapTx.size());
489 vtxid.push_back(entry->GetTx().GetId());
494GetInfo(CTxMemPool::indexed_transaction_set::const_iterator it) {
496 (*it)->GetFee(), (*it)->GetTxSize(),
497 (*it)->GetModifiedFee() - (*it)->GetFee()};
503 std::vector<TxMempoolInfo> ret;
504 ret.reserve(mapTx.size());
506 const auto &index = mapTx.get<
entry_id>();
507 for (
auto it = index.begin(); it != index.end(); ++it) {
508 ret.push_back(
GetInfo(mapTx.project<0>(it)));
516 indexed_transaction_set::const_iterator i = mapTx.find(txid);
517 if (i == mapTx.end()) {
521 return (*i)->GetSharedTx();
526 indexed_transaction_set::const_iterator i = mapTx.find(txid);
527 if (i == mapTx.end()) {
548 Amount &delta = mapDeltas[txid];
550 txiter it = mapTx.find(txid);
551 if (it != mapTx.end()) {
553 e->UpdateFeeDelta(delta);
564 std::map<TxId, Amount>::const_iterator pos = mapDeltas.find(txid);
565 if (pos == mapDeltas.end()) {
569 nFeeDelta += pos->second;
574 mapDeltas.erase(txid);
578 const auto it = mapNextTx.find(prevout);
579 return it == mapNextTx.end() ? nullptr : it->second;
583 auto it = mapTx.find(txid);
584 if (it != mapTx.end()) {
593 for (
const auto &txid : txids) {
603 for (
const CTxIn &in : tx.vin) {
604 if (
exists(in.prevout.GetTxId())) {
630 if (outpoint.GetN() < ptx->vout.size()) {
641 for (uint32_t n = 0; n < tx->vout.size(); ++n) {
657 12 *
sizeof(
void *)) *
666 if (m_unbroadcast_txids.erase(txid)) {
670 (unchecked ?
" before confirmation that txn was sent out" :
""));
681 for (
txiter it : stageRevTopo) {
688 indexed_transaction_set::index<entry_time>::type::iterator it =
691 while (it != mapTx.get<
entry_time>().end() && (*it)->GetTime() < time) {
692 toremove.insert(mapTx.project<0>(it));
697 for (
txiter removeit : toremove) {
711 "Expired %i transactions from the memory pool\n", expired);
714 std::vector<COutPoint> vNoSpendsRemaining;
716 for (
const COutPoint &removed : vNoSpendsRemaining) {
724 if (add && (*entry)->GetMemPoolChildren().insert(*child).second) {
726 }
else if (!add && (*entry)->GetMemPoolChildren().erase(*child)) {
734 if (add && (*entry)->GetMemPoolParents().insert(*parent).second) {
736 }
else if (!add && (*entry)->GetMemPoolParents().erase(*parent)) {
743 if (!blockSinceLastRollingFeeBump || rollingMinimumFeeRate == 0) {
748 if (time > lastRollingFeeUpdate + 10) {
756 rollingMinimumFeeRate =
757 rollingMinimumFeeRate /
758 pow(2.0, (time - lastRollingFeeUpdate) / halflife);
759 lastRollingFeeUpdate = time;
768 blockSinceLastRollingFeeBump =
false;
773 std::vector<COutPoint> *pvNoSpendsRemaining) {
776 unsigned nTxnRemoved = 0;
787 CFeeRate removed = (*it)->GetModifiedFeeRate();
791 maxFeeRateRemoved = std::max(maxFeeRateRemoved, removed);
795 nTxnRemoved += stage.size();
797 if (pvNoSpendsRemaining) {
798 for (
const txiter &iter : stage) {
799 for (
const CTxIn &txin : (*iter)->GetTx().vin) {
800 if (!
exists(txin.prevout.GetTxId())) {
801 pvNoSpendsRemaining->push_back(txin.prevout);
812 "Removed %u txn, rolling minimum fee bumped to %s\n",
813 nTxnRemoved, maxFeeRateRemoved.
ToString());
824 m_load_tried = load_tried;
static constexpr Amount SATOSHI
CCoinsView backed by another CCoinsView.
CCoinsView that adds a memory cache for transactions to another CCoinsView.
void Uncache(const COutPoint &outpoint)
Removes the UTXO with the given outpoint from the cache, if it is not modified.
Abstract view on the open txout dataset.
virtual bool GetCoin(const COutPoint &outpoint, Coin &coin) const
Retrieve the Coin (unspent transaction output) for a given outpoint.
bool GetCoin(const COutPoint &outpoint, Coin &coin) const override
GetCoin, returning whether it exists and is not spent.
void Reset()
Clear m_temp_added and m_non_base_coins.
std::unordered_map< COutPoint, Coin, SaltedOutpointHasher > m_temp_added
Coins made available by transactions being validated.
CCoinsViewMemPool(CCoinsView *baseIn, const CTxMemPool &mempoolIn)
std::unordered_set< COutPoint, SaltedOutpointHasher > m_non_base_coins
Set of all coins that have been fetched from mempool or created using PackageAddTransaction (not base...
void PackageAddTransaction(const CTransactionRef &tx)
Add the coins created by this transaction.
const CTxMemPool & mempool
Fee rate in satoshis per kilobyte: Amount / kB.
std::string ToString() const
Amount GetFeePerK() const
Return the fee in satoshis for a size of 1000 bytes.
void TransactionRemovedFromMempool(const CTransactionRef &, MemPoolRemovalReason, uint64_t mempool_sequence)
CTxMemPoolEntry stores data about the corresponding transaction, as well as data about all in-mempool...
std::set< std::reference_wrapper< const CTxMemPoolEntryRef >, CompareIteratorById > Children
std::set< std::reference_wrapper< const CTxMemPoolEntryRef >, CompareIteratorById > Parents
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
void removeConflicts(const CTransaction &tx) EXCLUSIVE_LOCKS_REQUIRED(cs)
CFeeRate estimateFee() const
bool HasNoInputsOf(const CTransaction &tx) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Check that none of this transactions inputs are in the mempool, and thus the tx is not dependent on o...
void ClearPrioritisation(const TxId &txid) EXCLUSIVE_LOCKS_REQUIRED(cs)
std::set< txiter, CompareIteratorById > setEntries
void RemoveUnbroadcastTx(const TxId &txid, const bool unchecked=false)
Removes a transaction from the unbroadcast set.
bool GetLoadTried() const
bool CalculateAncestors(setEntries &setAncestors, CTxMemPoolEntry::Parents &staged_ancestors) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Helper function to calculate all in-mempool ancestors of staged_ancestors param@[in] staged_ancestors...
void updateFeeForBlock() EXCLUSIVE_LOCKS_REQUIRED(cs)
Called when a block is connected.
CFeeRate GetMinFee() const
The minimum fee to get into the mempool, which may itself not be enough for larger-sized transactions...
RecursiveMutex cs
This mutex needs to be locked when accessing mapTx or other members that are guarded by it.
void trackPackageRemoved(const CFeeRate &rate) EXCLUSIVE_LOCKS_REQUIRED(cs)
void removeRecursive(const CTransaction &tx, MemPoolRemovalReason reason) EXCLUSIVE_LOCKS_REQUIRED(cs)
void UpdateForRemoveFromMempool(const setEntries &entriesToRemove) EXCLUSIVE_LOCKS_REQUIRED(cs)
For each transaction being removed, update ancestors and any direct children.
const int m_check_ratio
Value n means that 1 times in n we check.
void TrimToSize(size_t sizelimit, std::vector< COutPoint > *pvNoSpendsRemaining=nullptr) EXCLUSIVE_LOCKS_REQUIRED(cs)
Remove transactions from the mempool until its dynamic size is <= sizelimit.
const std::chrono::seconds m_expiry
void AddTransactionsUpdated(unsigned int n)
void UpdateChildrenForRemoval(txiter entry) EXCLUSIVE_LOCKS_REQUIRED(cs)
Sever link between specified transaction and direct children.
bool CompareTopologically(const TxId &txida, const TxId &txidb) const
TxMempoolInfo info(const TxId &txid) const
const int64_t m_max_size_bytes
void getAllTxIds(std::vector< TxId > &vtxid) const
std::atomic< uint32_t > nTransactionsUpdated
Used by getblocktemplate to trigger CreateNewBlock() invocation.
setEntries GetIterSet(const std::set< TxId > &txids) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Translate a set of txids into a set of pool iterators to avoid repeated lookups.
size_t DynamicMemoryUsage() const
std::vector< TxMempoolInfo > infoAll() const
void LimitSize(CCoinsViewCache &coins_cache) EXCLUSIVE_LOCKS_REQUIRED(cs
Reduce the size of the mempool by expiring and then trimming the mempool.
void UpdateParent(txiter entry, txiter parent, bool add) EXCLUSIVE_LOCKS_REQUIRED(cs)
CTransactionRef GetConflictTx(const COutPoint &prevout) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Get the transaction in the pool that spends the same prevout.
void removeUnchecked(txiter entry, MemPoolRemovalReason reason) EXCLUSIVE_LOCKS_REQUIRED(cs)
Before calling removeUnchecked for a given transaction, UpdateForRemoveFromMempool must be called on ...
int Expire(std::chrono::seconds time) EXCLUSIVE_LOCKS_REQUIRED(cs)
Expire all transaction (and their dependencies) in the mempool older than time.
std::set< txiter, CompareIteratorByRevEntryId > setRevTopoEntries
bool exists(const TxId &txid) const
static const int ROLLING_FEE_HALFLIFE
CTransactionRef get(const TxId &txid) const
const CFeeRate m_min_relay_feerate
void PrioritiseTransaction(const TxId &txid, const Amount nFeeDelta)
Affect CreateNewBlock prioritisation of transactions.
indexed_transaction_set::nth_index< 0 >::type::const_iterator txiter
uint64_t GetAndIncrementSequence() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Guards this internal counter for external reporting.
void UpdateChild(txiter entry, txiter child, bool add) EXCLUSIVE_LOCKS_REQUIRED(cs)
void check(const CCoinsViewCache &active_coins_tip, int64_t spendheight) const EXCLUSIVE_LOCKS_REQUIRED(void addUnchecked(CTxMemPoolEntryRef entry) EXCLUSIVE_LOCKS_REQUIRED(cs
If sanity-checking is turned on, check makes sure the pool is consistent (does not contain two transa...
RadixTree< CTxMemPoolEntry, MemPoolEntryRadixTreeAdapter > finalizedTxs
void check(const CCoinsViewCache &active_coins_tip, int64_t spendheight) const EXCLUSIVE_LOCKS_REQUIRED(void cs_main
CTxMemPool(const Options &opts)
Create a new CTxMemPool.
bool CalculateMemPoolAncestors(const CTxMemPoolEntryRef &entry, setEntries &setAncestors, bool fSearchForParents=true) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Try to calculate all in-mempool ancestors of entry.
void removeForFinalizedBlock(const std::vector< CTransactionRef > &vtx) EXCLUSIVE_LOCKS_REQUIRED(cs)
void CalculateDescendants(txiter it, setEntries &setDescendants) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Populate setDescendants with all in-mempool descendants of hash.
void RemoveStaged(const setEntries &stage, MemPoolRemovalReason reason) EXCLUSIVE_LOCKS_REQUIRED(cs)
Remove a set of transactions from the mempool.
void UpdateParentsOf(bool add, txiter it) EXCLUSIVE_LOCKS_REQUIRED(cs)
Update parents of it to add/remove it as a child transaction.
void ApplyDelta(const TxId &txid, Amount &nFeeDelta) const EXCLUSIVE_LOCKS_REQUIRED(cs)
void SetLoadTried(bool load_tried)
Set whether or not we've made an attempt to load the mempool (regardless of whether the attempt was s...
std::optional< txiter > GetIter(const TxId &txid) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Returns an iterator to the given txid, if found.
bool isSpent(const COutPoint &outpoint) const
unsigned int GetTransactionsUpdated() const
void _clear() EXCLUSIVE_LOCKS_REQUIRED(cs)
T * get()
Get allows to access the undelying pointer.
std::string ToString() const
std::string GetHex() const
void AddCoins(CCoinsViewCache &cache, const CTransaction &tx, int nHeight, bool check_for_overwrite)
Utility function to add all of a transaction's outputs to a cache.
#define LogPrint(category,...)
std::string FormatMoney(const Amount amt)
Do not use these functions to represent or parse monetary amounts to or from JSON but use AmountFromV...
bool CheckTxInputs(const CTransaction &tx, TxValidationState &state, const CCoinsViewCache &inputs, int nSpendHeight, Amount &txfee)
Check whether all inputs of this transaction are valid (no double spends and amounts).
static size_t DynamicUsage(const int8_t &v)
Dynamic memory usage for built-in types is zero.
static size_t IncrementalDynamicUsage(const std::set< X, Y > &s)
static size_t MallocUsage(size_t alloc)
Compute the total memory used by allocating alloc bytes.
Implement std::hash so RCUPtr can be used as a key for maps or sets.
static constexpr CFeeRate MEMPOOL_FULL_FEE_INCREMENT(1000 *SATOSHI)
Default for -incrementalrelayfee, which sets the minimum feerate increase for mempool limiting or BIP...
std::shared_ptr< const CTransaction > CTransactionRef
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
static constexpr Amount zero() noexcept
RCUPtr< T > remove(const KeyType &key)
Remove an element from the tree.
A TxId is the identifier of a transaction.
Information about a mempool transaction.
Options struct containing options for constructing a CTxMemPool.
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
bilingual_str _(const char *psz)
Translation function.
static TxMempoolInfo GetInfo(CTxMemPool::indexed_transaction_set::const_iterator it)
const std::string RemovalReasonToString(const MemPoolRemovalReason &r) noexcept
MemPoolRemovalReason
Reason why a transaction was removed from the mempool, this is passed to the notification signal.
@ SIZELIMIT
Removed in size limiting.
@ BLOCK
Removed for block.
@ EXPIRY
Expired from mempool.
@ AVALANCHE
Removed by avalanche vote.
@ CONFLICT
Removed for conflict with in-block transaction.
@ REORG
Removed for reorganization.
static const uint32_t MEMPOOL_HEIGHT
Fake height value used in Coins to signify they are only in the memory pool(since 0....
CMainSignals & GetMainSignals()