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);
212 for (
const CTxIn &txin : (*it)->GetTx().vin) {
213 mapNextTx.erase(txin.prevout);
219 totalTxSize -= (*it)->GetTxSize();
220 m_total_fee -= (*it)->GetFee();
221 cachedInnerUsage -= (*it)->DynamicMemoryUsage();
238 if (setDescendants.count(entryit) == 0) {
239 stage.insert(entryit);
244 while (!stage.empty()) {
245 txiter it = *stage.begin();
246 setDescendants.insert(it);
247 stage.erase(stage.begin());
250 (*it)->GetMemPoolChildrenConst();
251 for (
const auto &child : children) {
252 txiter childiter = mapTx.find(child.get()->GetTx().GetId());
253 assert(childiter != mapTx.end());
255 if (!setDescendants.count(childiter)) {
256 stage.insert(childiter);
267 txiter origit = mapTx.find(origTx.GetId());
268 if (origit != mapTx.end()) {
269 txToRemove.insert(origit);
275 auto it = mapNextTx.lower_bound(COutPoint(origTx.GetId(), 0));
276 while (it != mapNextTx.end() &&
277 it->first->GetTxId() == origTx.GetId()) {
278 txiter nextit = mapTx.find(it->second->GetId());
279 assert(nextit != mapTx.end());
280 txToRemove.insert(nextit);
286 for (
txiter it : txToRemove) {
296 for (
const CTxIn &txin : tx.vin) {
297 auto it = mapNextTx.find(txin.prevout);
298 if (it != mapNextTx.end()) {
299 const CTransaction &txConflict = *it->second;
300 if (txConflict != tx) {
314 lastRollingFeeUpdate =
GetTime();
315 blockSinceLastRollingFeeBump =
true;
319 const std::vector<CTransactionRef> &vtx) {
322 for (
const auto &tx : vtx) {
336 cachedInnerUsage = 0;
337 lastRollingFeeUpdate =
GetTime();
338 blockSinceLastRollingFeeBump =
false;
339 rollingMinimumFeeRate = 0;
349 int64_t spendheight)
const {
361 "Checking mempool with %u transactions and %u inputs\n",
362 (
unsigned int)mapTx.size(), (
unsigned int)mapNextTx.size());
364 uint64_t checkTotal = 0;
366 uint64_t innerUsage = 0;
372 checkTotal += entry->GetTxSize();
373 check_total_fee += entry->GetFee();
374 innerUsage += entry->DynamicMemoryUsage();
375 const CTransaction &tx = entry->GetTx();
380 for (
const CTxIn &txin : tx.vin) {
383 txiter parentIt = mapTx.find(txin.prevout.GetTxId());
384 if (parentIt != mapTx.end()) {
385 const CTransaction &parentTx = (*parentIt)->GetTx();
386 assert(parentTx.vout.size() > txin.prevout.GetN() &&
387 !parentTx.vout[txin.prevout.GetN()].IsNull());
388 setParentCheck.insert(*parentIt);
391 assert((*parentIt)->GetEntryId() < entry->GetEntryId());
397 assert(mempoolDuplicate.HaveCoin(txin.prevout));
399 auto prevoutNextIt = mapNextTx.find(txin.prevout);
400 assert(prevoutNextIt != mapNextTx.end());
401 assert(prevoutNextIt->first == &txin.prevout);
402 assert(prevoutNextIt->second.get() == &tx);
404 auto comp = [](
const auto &a,
const auto &b) ->
bool {
405 return a.get()->GetTx().GetId() == b.get()->GetTx().GetId();
407 assert(setParentCheck.size() == entry->GetMemPoolParentsConst().size());
408 assert(std::equal(setParentCheck.begin(), setParentCheck.end(),
409 entry->GetMemPoolParentsConst().begin(), comp));
419 for (
const auto &ancestor : setAncestors) {
420 assert((*ancestor)->GetEntryId() < entry->GetEntryId());
425 auto iter = mapNextTx.lower_bound(COutPoint(entry->GetTx().GetId(), 0));
426 for (; iter != mapNextTx.end() &&
427 iter->first->GetTxId() == entry->GetTx().GetId();
429 txiter childIt = mapTx.find(iter->second->GetId());
431 assert(childIt != mapTx.end());
432 setChildrenCheck.insert(*childIt);
434 assert(setChildrenCheck.size() ==
435 entry->GetMemPoolChildrenConst().size());
436 assert(std::equal(setChildrenCheck.begin(), setChildrenCheck.end(),
437 entry->GetMemPoolChildrenConst().begin(), comp));
444 spendheight, txfee));
445 for (
const auto &input : tx.vin) {
446 mempoolDuplicate.SpendCoin(input.prevout);
448 AddCoins(mempoolDuplicate, tx, std::numeric_limits<int>::max());
451 for (
auto &[
_, nextTx] : mapNextTx) {
452 txiter it = mapTx.find(nextTx->GetId());
453 assert(it != mapTx.end());
454 assert((*it)->GetSharedTx() == nextTx);
457 assert(totalTxSize == checkTotal);
458 assert(m_total_fee == check_total_fee);
459 assert(innerUsage == cachedInnerUsage);
463 const TxId &txidb)
const {
465 auto it1 = mapTx.find(txida);
466 if (it1 == mapTx.end()) {
469 auto it2 = mapTx.find(txidb);
470 if (it2 == mapTx.end()) {
473 return (*it1)->GetEntryId() < (*it2)->GetEntryId();
480 vtxid.reserve(mapTx.size());
483 vtxid.push_back(entry->GetTx().GetId());
488GetInfo(CTxMemPool::indexed_transaction_set::const_iterator it) {
490 (*it)->GetFee(), (*it)->GetTxSize(),
491 (*it)->GetModifiedFee() - (*it)->GetFee()};
497 std::vector<TxMempoolInfo> ret;
498 ret.reserve(mapTx.size());
500 const auto &index = mapTx.get<
entry_id>();
501 for (
auto it = index.begin(); it != index.end(); ++it) {
502 ret.push_back(
GetInfo(mapTx.project<0>(it)));
510 indexed_transaction_set::const_iterator i = mapTx.find(txid);
511 if (i == mapTx.end()) {
515 return (*i)->GetSharedTx();
520 indexed_transaction_set::const_iterator i = mapTx.find(txid);
521 if (i == mapTx.end()) {
542 Amount &delta = mapDeltas[txid];
544 txiter it = mapTx.find(txid);
545 if (it != mapTx.end()) {
547 e->UpdateFeeDelta(delta);
558 std::map<TxId, Amount>::const_iterator pos = mapDeltas.find(txid);
559 if (pos == mapDeltas.end()) {
563 nFeeDelta += pos->second;
568 mapDeltas.erase(txid);
572 const auto it = mapNextTx.find(prevout);
573 return it == mapNextTx.end() ? nullptr : it->second;
577 auto it = mapTx.find(txid);
578 if (it != mapTx.end()) {
587 for (
const auto &txid : txids) {
597 for (
const CTxIn &in : tx.vin) {
598 if (
exists(in.prevout.GetTxId())) {
624 if (outpoint.GetN() < ptx->vout.size()) {
635 for (uint32_t n = 0; n < tx->vout.size(); ++n) {
651 12 *
sizeof(
void *)) *
660 if (m_unbroadcast_txids.erase(txid)) {
664 (unchecked ?
" before confirmation that txn was sent out" :
""));
675 for (
txiter it : stageRevTopo) {
682 indexed_transaction_set::index<entry_time>::type::iterator it =
685 while (it != mapTx.get<
entry_time>().end() && (*it)->GetTime() < time) {
686 toremove.insert(mapTx.project<0>(it));
691 for (
txiter removeit : toremove) {
705 "Expired %i transactions from the memory pool\n", expired);
708 std::vector<COutPoint> vNoSpendsRemaining;
710 for (
const COutPoint &removed : vNoSpendsRemaining) {
718 if (add && (*entry)->GetMemPoolChildren().insert(*child).second) {
720 }
else if (!add && (*entry)->GetMemPoolChildren().erase(*child)) {
728 if (add && (*entry)->GetMemPoolParents().insert(*parent).second) {
730 }
else if (!add && (*entry)->GetMemPoolParents().erase(*parent)) {
737 if (!blockSinceLastRollingFeeBump || rollingMinimumFeeRate == 0) {
742 if (time > lastRollingFeeUpdate + 10) {
750 rollingMinimumFeeRate =
751 rollingMinimumFeeRate /
752 pow(2.0, (time - lastRollingFeeUpdate) / halflife);
753 lastRollingFeeUpdate = time;
762 blockSinceLastRollingFeeBump =
false;
767 std::vector<COutPoint> *pvNoSpendsRemaining) {
770 unsigned nTxnRemoved = 0;
781 CFeeRate removed = (*it)->GetModifiedFeeRate();
785 maxFeeRateRemoved = std::max(maxFeeRateRemoved, removed);
789 nTxnRemoved += stage.size();
791 if (pvNoSpendsRemaining) {
792 for (
const txiter &iter : stage) {
793 for (
const CTxIn &txin : (*iter)->GetTx().vin) {
794 if (!
exists(txin.prevout.GetTxId())) {
795 pvNoSpendsRemaining->push_back(txin.prevout);
806 "Removed %u txn, rolling minimum fee bumped to %s\n",
807 nTxnRemoved, maxFeeRateRemoved.
ToString());
818 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()