33 while (!staged_ancestors.empty()) {
34 const auto stage = staged_ancestors.begin()->get();
36 txiter stageit = mapTx.find(stage->GetTx().GetId());
37 assert(stageit != mapTx.end());
38 setAncestors.insert(stageit);
39 staged_ancestors.erase(staged_ancestors.begin());
42 (*stageit)->GetMemPoolParentsConst();
43 for (
const auto &parent : parents) {
44 txiter parent_it = mapTx.find(parent.get()->GetTx().GetId());
45 assert(parent_it != mapTx.end());
48 if (setAncestors.count(parent_it) == 0) {
49 staged_ancestors.insert(parent);
59 bool fSearchForParents )
const {
61 const CTransaction &tx = entry->GetTx();
63 if (fSearchForParents) {
67 for (
const CTxIn &in : tx.vin) {
68 std::optional<txiter> piter =
GetIter(in.prevout.GetTxId());
72 staged_ancestors.insert(**piter);
77 staged_ancestors = entry->GetMemPoolParentsConst();
85 for (
const auto &parent : (*it)->GetMemPoolParentsConst()) {
86 auto parent_it = mapTx.find(parent.get()->GetTx().GetId());
87 assert(parent_it != mapTx.end());
94 (*it)->GetMemPoolChildrenConst();
95 for (
const auto &child : children) {
96 auto updateIt = mapTx.find(child.get()->GetTx().GetId());
97 assert(updateIt != mapTx.end());
103 for (
txiter removeIt : entriesToRemove) {
113 for (
txiter removeIt : entriesToRemove) {
119 : m_check_ratio(opts.check_ratio),
120 m_finalizedTxsFitter(
node::BlockFitter(config)),
123 m_max_size_bytes{opts.max_size_bytes}, m_expiry{opts.expiry},
124 m_min_relay_feerate{opts.min_relay_feerate},
125 m_dust_relay_feerate{opts.dust_relay_feerate},
126 m_permit_bare_multisig{opts.permit_bare_multisig},
127 m_max_datacarrier_bytes{opts.max_datacarrier_bytes},
128 m_require_standard{opts.require_standard} {
137 return mapNextTx.count(outpoint);
150 entry->SetEntryId(nextEntryId++);
156 entry->UpdateFeeDelta(feeDelta);
161 auto [newit, inserted] = mapTx.insert(entry);
172 cachedInnerUsage += entry->DynamicMemoryUsage();
175 std::set<TxId> setParentTransactions;
176 for (
const CTxIn &in : tx->vin) {
177 mapNextTx.insert(std::make_pair(&in.prevout, tx));
178 setParentTransactions.insert(in.prevout.GetTxId());
185 for (
const auto &pit :
GetIterSet(setParentTransactions)) {
192 totalTxSize += entry->GetTxSize();
193 m_total_fee += entry->GetFee();
201 const TxId &txid = (*it)->GetTx().GetId();
209 (*it)->GetSharedTx(), reason, mempool_sequence);
212 m_finalizedTxsFitter.removeTxUnchecked(removed_tx->GetTxSize(),
213 removed_tx->GetSigChecks(),
214 removed_tx->GetFee());
218 for (
const CTxIn &txin : (*it)->GetTx().vin) {
219 mapNextTx.erase(txin.prevout);
225 totalTxSize -= (*it)->GetTxSize();
226 m_total_fee -= (*it)->GetFee();
227 cachedInnerUsage -= (*it)->DynamicMemoryUsage();
244 if (setDescendants.count(entryit) == 0) {
245 stage.insert(entryit);
250 while (!stage.empty()) {
251 txiter it = *stage.begin();
252 setDescendants.insert(it);
253 stage.erase(stage.begin());
256 (*it)->GetMemPoolChildrenConst();
257 for (
const auto &child : children) {
258 txiter childiter = mapTx.find(child.get()->GetTx().GetId());
259 assert(childiter != mapTx.end());
261 if (!setDescendants.count(childiter)) {
262 stage.insert(childiter);
273 txiter origit = mapTx.find(origTx.GetId());
274 if (origit != mapTx.end()) {
275 txToRemove.insert(origit);
281 auto it = mapNextTx.lower_bound(COutPoint(origTx.GetId(), 0));
282 while (it != mapNextTx.end() &&
283 it->first->GetTxId() == origTx.GetId()) {
284 txiter nextit = mapTx.find(it->second->GetId());
285 assert(nextit != mapTx.end());
286 txToRemove.insert(nextit);
292 for (
txiter it : txToRemove) {
302 for (
const CTxIn &txin : tx.vin) {
303 auto it = mapNextTx.find(txin.prevout);
304 if (it != mapNextTx.end()) {
305 const CTransaction &txConflict = *it->second;
306 if (txConflict != tx) {
320 lastRollingFeeUpdate =
GetTime();
321 blockSinceLastRollingFeeBump =
true;
325 const std::vector<CTransactionRef> &vtx) {
328 for (
const auto &tx : vtx) {
334 m_finalizedTxsFitter.removeTxUnchecked(removed_tx->GetTxSize(),
335 removed_tx->GetSigChecks(),
336 removed_tx->GetFee());
346 cachedInnerUsage = 0;
347 lastRollingFeeUpdate =
GetTime();
348 blockSinceLastRollingFeeBump =
false;
349 rollingMinimumFeeRate = 0;
359 int64_t spendheight)
const {
371 "Checking mempool with %u transactions and %u inputs\n",
372 (
unsigned int)mapTx.size(), (
unsigned int)mapNextTx.size());
374 uint64_t checkTotal = 0;
376 uint64_t innerUsage = 0;
382 checkTotal += entry->GetTxSize();
383 check_total_fee += entry->GetFee();
384 innerUsage += entry->DynamicMemoryUsage();
385 const CTransaction &tx = entry->GetTx();
390 for (
const CTxIn &txin : tx.vin) {
393 txiter parentIt = mapTx.find(txin.prevout.GetTxId());
394 if (parentIt != mapTx.end()) {
395 const CTransaction &parentTx = (*parentIt)->GetTx();
396 assert(parentTx.vout.size() > txin.prevout.GetN() &&
397 !parentTx.vout[txin.prevout.GetN()].IsNull());
398 setParentCheck.insert(*parentIt);
401 assert((*parentIt)->GetEntryId() < entry->GetEntryId());
407 assert(mempoolDuplicate.HaveCoin(txin.prevout));
409 auto prevoutNextIt = mapNextTx.find(txin.prevout);
410 assert(prevoutNextIt != mapNextTx.end());
411 assert(prevoutNextIt->first == &txin.prevout);
412 assert(prevoutNextIt->second.get() == &tx);
414 auto comp = [](
const auto &a,
const auto &b) ->
bool {
415 return a.get()->GetTx().GetId() == b.get()->GetTx().GetId();
417 assert(setParentCheck.size() == entry->GetMemPoolParentsConst().size());
418 assert(std::equal(setParentCheck.begin(), setParentCheck.end(),
419 entry->GetMemPoolParentsConst().begin(), comp));
429 for (
const auto &ancestor : setAncestors) {
430 assert((*ancestor)->GetEntryId() < entry->GetEntryId());
435 auto iter = mapNextTx.lower_bound(COutPoint(entry->GetTx().GetId(), 0));
436 for (; iter != mapNextTx.end() &&
437 iter->first->GetTxId() == entry->GetTx().GetId();
439 txiter childIt = mapTx.find(iter->second->GetId());
441 assert(childIt != mapTx.end());
442 setChildrenCheck.insert(*childIt);
444 assert(setChildrenCheck.size() ==
445 entry->GetMemPoolChildrenConst().size());
446 assert(std::equal(setChildrenCheck.begin(), setChildrenCheck.end(),
447 entry->GetMemPoolChildrenConst().begin(), comp));
454 spendheight, txfee));
455 for (
const auto &input : tx.vin) {
456 mempoolDuplicate.SpendCoin(input.prevout);
458 AddCoins(mempoolDuplicate, tx, std::numeric_limits<int>::max());
461 for (
auto &[
_, nextTx] : mapNextTx) {
462 txiter it = mapTx.find(nextTx->GetId());
463 assert(it != mapTx.end());
464 assert((*it)->GetSharedTx() == nextTx);
467 assert(totalTxSize == checkTotal);
468 assert(m_total_fee == check_total_fee);
469 assert(innerUsage == cachedInnerUsage);
473 const TxId &txidb)
const {
475 auto it1 = mapTx.find(txida);
476 if (it1 == mapTx.end()) {
479 auto it2 = mapTx.find(txidb);
480 if (it2 == mapTx.end()) {
483 return (*it1)->GetEntryId() < (*it2)->GetEntryId();
490 vtxid.reserve(mapTx.size());
493 vtxid.push_back(entry->GetTx().GetId());
498GetInfo(CTxMemPool::indexed_transaction_set::const_iterator it) {
500 (*it)->GetFee(), (*it)->GetTxSize(),
501 (*it)->GetModifiedFee() - (*it)->GetFee()};
507 std::vector<TxMempoolInfo> ret;
508 ret.reserve(mapTx.size());
510 const auto &index = mapTx.get<
entry_id>();
511 for (
auto it = index.begin(); it != index.end(); ++it) {
512 ret.push_back(
GetInfo(mapTx.project<0>(it)));
519 std::vector<TxId> &finalizedTxIds) {
522 auto it = mapTx.find(tx->GetTx().GetId());
523 if (it == mapTx.end()) {
529 setAncestors.insert(it);
537 finalizedTxIds.clear();
539 for (
txiter ancestor_it : setAncestors) {
543 m_finalizedTxsFitter.addTx((*ancestor_it)->GetTxSize(),
544 (*ancestor_it)->GetSigChecks(),
545 (*ancestor_it)->GetFee());
547 finalizedTxIds.push_back((*ancestor_it)->GetTx().GetId());
558 const TxId &txid = tx->GetId();
565 return m_conflicting && m_conflicting->HaveTx(txid))) {
575 indexed_transaction_set::const_iterator i = mapTx.find(txid);
576 if (i == mapTx.end()) {
580 return (*i)->GetSharedTx();
585 indexed_transaction_set::const_iterator i = mapTx.find(txid);
586 if (i == mapTx.end()) {
607 Amount &delta = mapDeltas[txid];
609 txiter it = mapTx.find(txid);
610 if (it != mapTx.end()) {
612 e->UpdateFeeDelta(delta);
623 std::map<TxId, Amount>::const_iterator pos = mapDeltas.find(txid);
624 if (pos == mapDeltas.end()) {
628 nFeeDelta += pos->second;
633 mapDeltas.erase(txid);
637 const auto it = mapNextTx.find(prevout);
638 return it == mapNextTx.end() ? nullptr : it->second;
642 auto it = mapTx.find(txid);
643 if (it != mapTx.end()) {
652 for (
const auto &txid : txids) {
662 for (
const CTxIn &in : tx.vin) {
663 if (
exists(in.prevout.GetTxId())) {
689 if (outpoint.GetN() < ptx->vout.size()) {
700 for (uint32_t n = 0; n < tx->vout.size(); ++n) {
716 12 *
sizeof(
void *)) *
725 if (m_unbroadcast_txids.erase(txid)) {
729 (unchecked ?
" before confirmation that txn was sent out" :
""));
740 for (
txiter it : stageRevTopo) {
747 indexed_transaction_set::index<entry_time>::type::iterator it =
750 while (it != mapTx.get<
entry_time>().end() && (*it)->GetTime() < time) {
751 toremove.insert(mapTx.project<0>(it));
756 for (
txiter removeit : toremove) {
770 "Expired %i transactions from the memory pool\n", expired);
773 std::vector<COutPoint> vNoSpendsRemaining;
775 for (
const COutPoint &removed : vNoSpendsRemaining) {
783 if (add && (*entry)->GetMemPoolChildren().insert(*child).second) {
785 }
else if (!add && (*entry)->GetMemPoolChildren().erase(*child)) {
793 if (add && (*entry)->GetMemPoolParents().insert(*parent).second) {
795 }
else if (!add && (*entry)->GetMemPoolParents().erase(*parent)) {
802 if (!blockSinceLastRollingFeeBump || rollingMinimumFeeRate == 0) {
807 if (time > lastRollingFeeUpdate + 10) {
815 rollingMinimumFeeRate =
816 rollingMinimumFeeRate /
817 pow(2.0, (time - lastRollingFeeUpdate) / halflife);
818 lastRollingFeeUpdate = time;
827 blockSinceLastRollingFeeBump =
false;
832 std::vector<COutPoint> *pvNoSpendsRemaining) {
835 unsigned nTxnRemoved = 0;
846 CFeeRate removed = (*it)->GetModifiedFeeRate();
850 maxFeeRateRemoved = std::max(maxFeeRateRemoved, removed);
854 nTxnRemoved += stage.size();
856 if (pvNoSpendsRemaining) {
857 for (
const txiter &iter : stage) {
858 for (
const CTxIn &txin : (*iter)->GetTx().vin) {
859 if (!
exists(txin.prevout.GetTxId())) {
860 pvNoSpendsRemaining->push_back(txin.prevout);
871 "Removed %u txn, rolling minimum fee bumped to %s\n",
872 nTxnRemoved, maxFeeRateRemoved.
ToString());
883 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)
bool setAvalancheFinalized(const CTxMemPoolEntryRef &tx, std::vector< TxId > &finalizedTxIds) 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.
bool isWorthPolling(const CTransactionRef &tx) const EXCLUSIVE_LOCKS_REQUIRED(cs
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
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.
CTxMemPool(const Config &config, const Options &opts)
Create a new CTxMemPool.
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.
bool insert(const RCUPtr< T > &value)
Insert a value into the tree.
A TxId is the identifier of a transaction.
Information about a mempool transaction.
Options struct containing options for constructing a CTxMemPool.
#define AssertLockNotHeld(cs)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
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()