Dash Core  0.12.2.1
P2P Digital Currency
CTxMemPool Class Reference

#include <txmempool.h>

Classes

struct  CompareIteratorByHash
 
struct  TxLinks
 

Public Types

typedef boost::multi_index_container< CTxMemPoolEntry, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< mempoolentry_txid >, boost::multi_index::ordered_non_unique< boost::multi_index::identity< CTxMemPoolEntry >, CompareTxMemPoolEntryByDescendantScore >, boost::multi_index::ordered_non_unique< boost::multi_index::identity< CTxMemPoolEntry >, CompareTxMemPoolEntryByEntryTime >, boost::multi_index::ordered_unique< boost::multi_index::identity< CTxMemPoolEntry >, CompareTxMemPoolEntryByScore > > > indexed_transaction_set
 
typedef indexed_transaction_set::nth_index< 0 >::type::iterator txiter
 
typedef std::set< txiter, CompareIteratorByHashsetEntries
 

Public Member Functions

const setEntriesGetMemPoolParents (txiter entry) const
 
const setEntriesGetMemPoolChildren (txiter entry) const
 
 CTxMemPool (const CFeeRate &_minReasonableRelayFee)
 
 ~CTxMemPool ()
 
void check (const CCoinsViewCache *pcoins) const
 
void setSanityCheck (double dFrequency=1.0)
 
bool addUnchecked (const uint256 &hash, const CTxMemPoolEntry &entry, bool fCurrentEstimate=true)
 
bool addUnchecked (const uint256 &hash, const CTxMemPoolEntry &entry, setEntries &setAncestors, bool fCurrentEstimate=true)
 
void addAddressIndex (const CTxMemPoolEntry &entry, const CCoinsViewCache &view)
 
bool getAddressIndex (std::vector< std::pair< uint160, int > > &addresses, std::vector< std::pair< CMempoolAddressDeltaKey, CMempoolAddressDelta > > &results)
 
bool removeAddressIndex (const uint256 txhash)
 
void addSpentIndex (const CTxMemPoolEntry &entry, const CCoinsViewCache &view)
 
bool getSpentIndex (CSpentIndexKey &key, CSpentIndexValue &value)
 
bool removeSpentIndex (const uint256 txhash)
 
void remove (const CTransaction &tx, std::list< CTransaction > &removed, bool fRecursive=false)
 
void removeForReorg (const CCoinsViewCache *pcoins, unsigned int nMemPoolHeight, int flags)
 
void removeConflicts (const CTransaction &tx, std::list< CTransaction > &removed)
 
void removeForBlock (const std::vector< CTransaction > &vtx, unsigned int nBlockHeight, std::list< CTransaction > &conflicts, bool fCurrentEstimate=true)
 
void clear ()
 
void _clear ()
 
void queryHashes (std::vector< uint256 > &vtxid)
 
void pruneSpent (const uint256 &hash, CCoins &coins)
 
unsigned int GetTransactionsUpdated () const
 
void AddTransactionsUpdated (unsigned int n)
 
bool HasNoInputsOf (const CTransaction &tx) const
 
void PrioritiseTransaction (const uint256 hash, const std::string strHash, double dPriorityDelta, const CAmount &nFeeDelta)
 
void ApplyDeltas (const uint256 hash, double &dPriorityDelta, CAmount &nFeeDelta) const
 
void ClearPrioritisation (const uint256 hash)
 
void RemoveStaged (setEntries &stage)
 
void UpdateTransactionsFromBlock (const std::vector< uint256 > &hashesToUpdate)
 
bool CalculateMemPoolAncestors (const CTxMemPoolEntry &entry, setEntries &setAncestors, uint64_t limitAncestorCount, uint64_t limitAncestorSize, uint64_t limitDescendantCount, uint64_t limitDescendantSize, std::string &errString, bool fSearchForParents=true)
 
void CalculateDescendants (txiter it, setEntries &setDescendants)
 
CFeeRate GetMinFee (size_t sizelimit) const
 
void UpdateMinFee (const CFeeRate &_minReasonableRelayFee)
 
void TrimToSize (size_t sizelimit, std::vector< uint256 > *pvNoSpendsRemaining=NULL)
 
int Expire (int64_t time)
 
unsigned long size ()
 
uint64_t GetTotalTxSize ()
 
bool exists (uint256 hash) const
 
bool lookup (uint256 hash, CTransaction &result) const
 
CFeeRate estimateSmartFee (int nBlocks, int *answerFoundAtBlocks=NULL) const
 
CFeeRate estimateFee (int nBlocks) const
 
double estimateSmartPriority (int nBlocks, int *answerFoundAtBlocks=NULL) const
 
double estimatePriority (int nBlocks) const
 
bool WriteFeeEstimates (CAutoFile &fileout) const
 
bool ReadFeeEstimates (CAutoFile &filein)
 
size_t DynamicMemoryUsage () const
 

Public Attributes

CCriticalSection cs
 
indexed_transaction_set mapTx
 
std::map< COutPoint, CInPointmapNextTx
 
std::map< uint256, std::pair< double, CAmount > > mapDeltas
 

Static Public Attributes

static const int ROLLING_FEE_HALFLIFE = 60 * 60 * 12
 

Private Types

typedef std::map< txiter, setEntries, CompareIteratorByHashcacheMap
 
typedef std::map< txiter, TxLinks, CompareIteratorByHashtxlinksMap
 
typedef std::map< CMempoolAddressDeltaKey, CMempoolAddressDelta, CMempoolAddressDeltaKeyCompareaddressDeltaMap
 
typedef std::map< uint256, std::vector< CMempoolAddressDeltaKey > > addressDeltaMapInserted
 
typedef std::map< CSpentIndexKey, CSpentIndexValue, CSpentIndexKeyComparemapSpentIndex
 
typedef std::map< uint256, std::vector< CSpentIndexKey > > mapSpentIndexInserted
 

Private Member Functions

void trackPackageRemoved (const CFeeRate &rate)
 minimum fee to get into the pool, decreases exponentially More...
 
void UpdateParent (txiter entry, txiter parent, bool add)
 
void UpdateChild (txiter entry, txiter child, bool add)
 
bool UpdateForDescendants (txiter updateIt, int maxDescendantsToVisit, cacheMap &cachedDescendants, const std::set< uint256 > &setExclude)
 
void UpdateAncestorsOf (bool add, txiter hash, setEntries &setAncestors)
 
void UpdateForRemoveFromMempool (const setEntries &entriesToRemove)
 
void UpdateChildrenForRemoval (txiter entry)
 
void removeUnchecked (txiter entry)
 

Private Attributes

uint32_t nCheckFrequency
 
unsigned int nTransactionsUpdated
 Value n means that n times in 2^32 we check. More...
 
CBlockPolicyEstimatorminerPolicyEstimator
 
uint64_t totalTxSize
 
uint64_t cachedInnerUsage
 sum of all mempool tx' byte sizes More...
 
CFeeRate minReasonableRelayFee
 sum of dynamic memory usage of all the map elements (NOT the maps themselves) More...
 
int64_t lastRollingFeeUpdate
 
bool blockSinceLastRollingFeeBump
 
double rollingMinimumFeeRate
 
txlinksMap mapLinks
 
addressDeltaMap mapAddress
 
addressDeltaMapInserted mapAddressInserted
 
mapSpentIndex mapSpent
 
mapSpentIndexInserted mapSpentInserted
 

Detailed Description

CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the next block.

Transactions are added when they are seen on the network (or created by the local node), but not all transactions seen are added to the pool: if a new transaction double-spends an input of a transaction in the pool, it is dropped, as are non-standard transactions.

CTxMemPool::mapTx, and CTxMemPoolEntry bookkeeping:

mapTx is a boost::multi_index that sorts the mempool on 4 criteria:

  • transaction hash
  • feerate [we use max(feerate of tx, feerate of tx with all descendants)]
  • time in mempool
  • mining score (feerate modified by any fee deltas from PrioritiseTransaction)

Note: the term "descendant" refers to in-mempool transactions that depend on this one, while "ancestor" refers to in-mempool transactions that a given transaction depends on.

In order for the feerate sort to remain correct, we must update transactions in the mempool when new descendants arrive. To facilitate this, we track the set of in-mempool direct parents and direct children in mapLinks. Within each CTxMemPoolEntry, we track the size and fees of all descendants.

Usually when a new transaction is added to the mempool, it has no in-mempool children (because any such children would be an orphan). So in addUnchecked(), we:

  • update a new entry's setMemPoolParents to include all in-mempool parents
  • update the new entry's direct parents to include the new tx as a child
  • update all ancestors of the transaction to include the new tx's size/fee

When a transaction is removed from the mempool, we must:

  • update all in-mempool parents to not track the tx in setMemPoolChildren
  • update all ancestors to not include the tx's size/fees in descendant state
  • update all in-mempool children to not include it as a parent

These happen in UpdateForRemoveFromMempool(). (Note that when removing a transaction along with its descendants, we must calculate that set of transactions to be removed before doing the removal, or else the mempool can be in an inconsistent state where it's impossible to walk the ancestors of a transaction.)

In the event of a reorg, the assumption that a newly added tx has no in-mempool children is false. In particular, the mempool is in an inconsistent state while new transactions are being added, because there may be descendant transactions of a tx coming from a disconnected block that are unreachable from just looking at transactions in the mempool (the linking transactions may also be in the disconnected block, waiting to be added). Because of this, there's not much benefit in trying to search for in-mempool children in addUnchecked(). Instead, in the special case of transactions being added from a disconnected block, we require the caller to clean up the state, to account for in-mempool, out-of-block descendants for all the in-block transactions by calling UpdateTransactionsFromBlock(). Note that until this is called, the mempool state is not consistent, and in particular mapLinks may not be correct (and therefore functions like CalculateMemPoolAncestors() and CalculateDescendants() that rely on them to walk the mempool are not generally safe to use).

Computational limits:

Updating all in-mempool ancestors of a newly added transaction can be slow, if no bound exists on how many in-mempool ancestors there may be. CalculateMemPoolAncestors() takes configurable limits that are designed to prevent these calculations from being too CPU intensive.

Adding transactions from a disconnected block can be very time consuming, because we don't have a way to limit the number of in-mempool descendants. To bound CPU processing, we limit the amount of work we're willing to do to properly update the descendant information for a tx being added from a disconnected block. If we would exceed the limit, then we instead mark the entry as "dirty", and set the feerate for sorting purposes to be equal the feerate of the transaction without any descendants.

Definition at line 357 of file txmempool.h.

Member Typedef Documentation

◆ addressDeltaMap

◆ addressDeltaMapInserted

typedef std::map<uint256, std::vector<CMempoolAddressDeltaKey> > CTxMemPool::addressDeltaMapInserted
private

Definition at line 428 of file txmempool.h.

◆ cacheMap

Definition at line 415 of file txmempool.h.

◆ indexed_transaction_set

typedef boost::multi_index_container< CTxMemPoolEntry, boost::multi_index::indexed_by< boost::multi_index::ordered_unique<mempoolentry_txid>, boost::multi_index::ordered_non_unique< boost::multi_index::identity<CTxMemPoolEntry>, CompareTxMemPoolEntryByDescendantScore >, boost::multi_index::ordered_non_unique< boost::multi_index::identity<CTxMemPoolEntry>, CompareTxMemPoolEntryByEntryTime >, boost::multi_index::ordered_unique< boost::multi_index::identity<CTxMemPoolEntry>, CompareTxMemPoolEntryByScore > > > CTxMemPool::indexed_transaction_set

Definition at line 400 of file txmempool.h.

◆ mapSpentIndex

Definition at line 431 of file txmempool.h.

◆ mapSpentIndexInserted

typedef std::map<uint256, std::vector<CSpentIndexKey> > CTxMemPool::mapSpentIndexInserted
private

Definition at line 434 of file txmempool.h.

◆ setEntries

Definition at line 410 of file txmempool.h.

◆ txiter

typedef indexed_transaction_set::nth_index<0>::type::iterator CTxMemPool::txiter

Definition at line 404 of file txmempool.h.

◆ txlinksMap

Definition at line 422 of file txmempool.h.

Constructor & Destructor Documentation

◆ CTxMemPool()

CTxMemPool::CTxMemPool ( const CFeeRate _minReasonableRelayFee)

Create a new CTxMemPool. minReasonableRelayFee should be a feerate which is, roughly, somewhere around what it "costs" to relay a transaction around the network and below which we would reasonably say a transaction has 0-effective-fee.

Definition at line 328 of file txmempool.cpp.

◆ ~CTxMemPool()

CTxMemPool::~CTxMemPool ( )

Definition at line 342 of file txmempool.cpp.

Member Function Documentation

◆ _clear()

void CTxMemPool::_clear ( )

Definition at line 732 of file txmempool.cpp.

Referenced by clear(), and CTxMemPool().

◆ addAddressIndex()

void CTxMemPool::addAddressIndex ( const CTxMemPoolEntry entry,
const CCoinsViewCache view 
)

Definition at line 426 of file txmempool.cpp.

Referenced by AcceptToMemoryPoolWorker().

◆ addSpentIndex()

void CTxMemPool::addSpentIndex ( const CTxMemPoolEntry entry,
const CCoinsViewCache view 
)

Definition at line 500 of file txmempool.cpp.

Referenced by AcceptToMemoryPoolWorker().

◆ AddTransactionsUpdated()

void CTxMemPool::AddTransactionsUpdated ( unsigned int  n)

Definition at line 366 of file txmempool.cpp.

Referenced by PrepareShutdown(), and UpdateTip().

◆ addUnchecked() [1/2]

bool CTxMemPool::addUnchecked ( const uint256 hash,
const CTxMemPoolEntry entry,
bool  fCurrentEstimate = true 
)

Definition at line 1030 of file txmempool.cpp.

Referenced by AcceptToMemoryPoolWorker().

◆ addUnchecked() [2/2]

bool CTxMemPool::addUnchecked ( const uint256 hash,
const CTxMemPoolEntry entry,
setEntries setAncestors,
bool  fCurrentEstimate = true 
)

Definition at line 372 of file txmempool.cpp.

◆ ApplyDeltas()

void CTxMemPool::ApplyDeltas ( const uint256  hash,
double &  dPriorityDelta,
CAmount nFeeDelta 
) const

Definition at line 957 of file txmempool.cpp.

Referenced by AcceptToMemoryPoolWorker(), and CreateNewBlock().

◆ CalculateDescendants()

void CTxMemPool::CalculateDescendants ( txiter  it,
setEntries setDescendants 
)

Populate setDescendants with all in-mempool descendants of hash. Assumes that setDescendants includes all in-mempool descendants of anything already in it.

Definition at line 588 of file txmempool.cpp.

Referenced by AcceptToMemoryPoolWorker(), Expire(), remove(), and TrimToSize().

◆ CalculateMemPoolAncestors()

bool CTxMemPool::CalculateMemPoolAncestors ( const CTxMemPoolEntry entry,
setEntries setAncestors,
uint64_t  limitAncestorCount,
uint64_t  limitAncestorSize,
uint64_t  limitDescendantCount,
uint64_t  limitDescendantSize,
std::string &  errString,
bool  fSearchForParents = true 
)

Try to calculate all in-mempool ancestors of entry. (these are all calculated including the tx itself) limitAncestorCount = max number of ancestors limitAncestorSize = max size of ancestors limitDescendantCount = max number of descendants any ancestor can have limitDescendantSize = max size of descendants any ancestor can have errString = populated with error reason if any limits are hit fSearchForParents = whether to search a tx's vin for in-mempool parents, or look up parents from mapLinks. Must be true for entries not in the mempool

Definition at line 183 of file txmempool.cpp.

Referenced by AcceptToMemoryPoolWorker(), addUnchecked(), IsRBFOptIn(), PrioritiseTransaction(), and UpdateForRemoveFromMempool().

◆ check()

void CTxMemPool::check ( const CCoinsViewCache pcoins) const

If sanity-checking is turned on, check makes sure the pool is consistent (does not contain two transactions that spend the same inputs, all inputs are in the mapNextTx array). If sanity-checking is turned off, check does nothing.

Definition at line 751 of file txmempool.cpp.

Referenced by ActivateBestChainStep(), and ProcessMessage().

◆ clear()

void CTxMemPool::clear ( )

Definition at line 745 of file txmempool.cpp.

Referenced by UnloadBlockIndex().

◆ ClearPrioritisation()

void CTxMemPool::ClearPrioritisation ( const uint256  hash)

Definition at line 968 of file txmempool.cpp.

Referenced by removeConflicts(), and removeForBlock().

◆ DynamicMemoryUsage()

size_t CTxMemPool::DynamicMemoryUsage ( ) const

◆ estimateFee()

CFeeRate CTxMemPool::estimateFee ( int  nBlocks) const

Estimate fee rate needed to get into the next nBlocks

Definition at line 878 of file txmempool.cpp.

Referenced by estimatefee().

◆ estimatePriority()

double CTxMemPool::estimatePriority ( int  nBlocks) const

Estimate priority needed to get into the next nBlocks

Definition at line 888 of file txmempool.cpp.

Referenced by estimatepriority().

◆ estimateSmartFee()

CFeeRate CTxMemPool::estimateSmartFee ( int  nBlocks,
int *  answerFoundAtBlocks = NULL 
) const

Estimate fee rate needed to get into the next nBlocks If no answer can be given at nBlocks, return an estimate at the lowest number of blocks where one can be given

Definition at line 883 of file txmempool.cpp.

Referenced by estimatesmartfee(), CWallet::GetMinimumFee(), CoinControlDialog::updateLabels(), and SendCoinsDialog::updateSmartFeeLabel().

◆ estimateSmartPriority()

double CTxMemPool::estimateSmartPriority ( int  nBlocks,
int *  answerFoundAtBlocks = NULL 
) const

Estimate priority needed to get into the next nBlocks If no answer can be given at nBlocks, return an estimate at the lowest number of blocks where one can be given

Definition at line 893 of file txmempool.cpp.

Referenced by CWallet::CreateTransaction(), estimatesmartpriority(), and CoinControlDialog::updateLabels().

◆ exists()

◆ Expire()

int CTxMemPool::Expire ( int64_t  time)

Expire all transaction (and their dependencies) in the mempool older than time. Return the number of removed transactions.

Definition at line 1014 of file txmempool.cpp.

Referenced by LimitMempoolSize().

◆ getAddressIndex()

bool CTxMemPool::getAddressIndex ( std::vector< std::pair< uint160, int > > &  addresses,
std::vector< std::pair< CMempoolAddressDeltaKey, CMempoolAddressDelta > > &  results 
)

Definition at line 470 of file txmempool.cpp.

Referenced by getaddressmempool().

◆ GetMemPoolChildren()

const CTxMemPool::setEntries & CTxMemPool::GetMemPoolChildren ( txiter  entry) const

◆ GetMemPoolParents()

const CTxMemPool::setEntries & CTxMemPool::GetMemPoolParents ( txiter  entry) const

◆ GetMinFee()

CFeeRate CTxMemPool::GetMinFee ( size_t  sizelimit) const

The minimum fee to get into the mempool, which may itself not be enough for larger-sized transactions. The minReasonableRelayFee constructor arg is used to bound the time it takes the fee rate to go back down all the way to 0. When the feerate would otherwise be half of this, it is set to 0 instead.

Definition at line 1076 of file txmempool.cpp.

Referenced by AcceptToMemoryPoolWorker(), CBlockPolicyEstimator::estimateSmartFee(), CBlockPolicyEstimator::estimateSmartPriority(), and mempoolInfoToJSON().

◆ getSpentIndex()

bool CTxMemPool::getSpentIndex ( CSpentIndexKey key,
CSpentIndexValue value 
)

Definition at line 536 of file txmempool.cpp.

Referenced by GetSpentIndex().

◆ GetTotalTxSize()

uint64_t CTxMemPool::GetTotalTxSize ( )
inline

Definition at line 557 of file txmempool.h.

Referenced by mempoolInfoToJSON().

◆ GetTransactionsUpdated()

unsigned int CTxMemPool::GetTransactionsUpdated ( ) const

Definition at line 360 of file txmempool.cpp.

Referenced by BitcoinMiner(), and getblocktemplate().

◆ HasNoInputsOf()

bool CTxMemPool::HasNoInputsOf ( const CTransaction tx) const

Check that none of this transactions inputs are in the mempool, and thus the tx is not dependent on other mempool transactions to be included in a block.

Definition at line 974 of file txmempool.cpp.

Referenced by AcceptToMemoryPoolWorker().

◆ lookup()

bool CTxMemPool::lookup ( uint256  hash,
CTransaction result 
) const

◆ PrioritiseTransaction()

void CTxMemPool::PrioritiseTransaction ( const uint256  hash,
const std::string  strHash,
double  dPriorityDelta,
const CAmount nFeeDelta 
)

◆ pruneSpent()

void CTxMemPool::pruneSpent ( const uint256 hash,
CCoins coins 
)

Definition at line 347 of file txmempool.cpp.

Referenced by gettxout(), and rest_getutxos().

◆ queryHashes()

void CTxMemPool::queryHashes ( std::vector< uint256 > &  vtxid)

Definition at line 859 of file txmempool.cpp.

Referenced by mempoolToJSON(), and ProcessMessage().

◆ ReadFeeEstimates()

bool CTxMemPool::ReadFeeEstimates ( CAutoFile filein)

Definition at line 916 of file txmempool.cpp.

Referenced by AppInit2().

◆ remove()

void CTxMemPool::remove ( const CTransaction tx,
std::list< CTransaction > &  removed,
bool  fRecursive = false 
)

Definition at line 611 of file txmempool.cpp.

Referenced by DisconnectTip().

◆ removeAddressIndex()

bool CTxMemPool::removeAddressIndex ( const uint256  txhash)

Definition at line 484 of file txmempool.cpp.

Referenced by removeUnchecked().

◆ removeConflicts()

void CTxMemPool::removeConflicts ( const CTransaction tx,
std::list< CTransaction > &  removed 
)

Definition at line 685 of file txmempool.cpp.

Referenced by removeForBlock().

◆ removeForBlock()

void CTxMemPool::removeForBlock ( const std::vector< CTransaction > &  vtx,
unsigned int  nBlockHeight,
std::list< CTransaction > &  conflicts,
bool  fCurrentEstimate = true 
)

Called when a block is connected. Removes from mempool and updates the miner fee estimator.

Definition at line 706 of file txmempool.cpp.

Referenced by ConnectTip().

◆ removeForReorg()

void CTxMemPool::removeForReorg ( const CCoinsViewCache pcoins,
unsigned int  nMemPoolHeight,
int  flags 
)

Definition at line 649 of file txmempool.cpp.

Referenced by ActivateBestChainStep(), and InvalidateBlock().

◆ removeSpentIndex()

bool CTxMemPool::removeSpentIndex ( const uint256  txhash)

Definition at line 549 of file txmempool.cpp.

Referenced by removeUnchecked().

◆ RemoveStaged()

void CTxMemPool::RemoveStaged ( setEntries stage)

Remove a set of transactions from the mempool. If a transaction is in this set, then all in-mempool descendants must also be in the set.

Definition at line 1006 of file txmempool.cpp.

Referenced by AcceptToMemoryPoolWorker(), Expire(), remove(), and TrimToSize().

◆ removeUnchecked()

void CTxMemPool::removeUnchecked ( txiter  entry)
private

Before calling removeUnchecked for a given transaction, UpdateForRemoveFromMempool must be called on the entire (dependent) set of transactions being removed at the same time. We use each CTxMemPoolEntry's setMemPoolParents in order to walk ancestors of a given transaction that is removed, so we can't remove intermediate transactions in a chain before we've updated all the state for the removal.

Definition at line 565 of file txmempool.cpp.

Referenced by RemoveStaged().

◆ setSanityCheck()

void CTxMemPool::setSanityCheck ( double  dFrequency = 1.0)
inline

Definition at line 459 of file txmempool.h.

Referenced by AppInit2().

◆ size()

unsigned long CTxMemPool::size ( )
inline

◆ trackPackageRemoved()

void CTxMemPool::trackPackageRemoved ( const CFeeRate rate)
private

minimum fee to get into the pool, decreases exponentially

Definition at line 1108 of file txmempool.cpp.

Referenced by TrimToSize().

◆ TrimToSize()

void CTxMemPool::TrimToSize ( size_t  sizelimit,
std::vector< uint256 > *  pvNoSpendsRemaining = NULL 
)

Remove transactions from the mempool until its dynamic size is <= sizelimit. pvNoSpendsRemaining, if set, will be populated with the list of transactions which are not in mempool which no longer have any spends in this mempool.

Definition at line 1116 of file txmempool.cpp.

Referenced by LimitMempoolSize().

◆ UpdateAncestorsOf()

void CTxMemPool::UpdateAncestorsOf ( bool  add,
txiter  hash,
setEntries setAncestors 
)
private

Update ancestors of hash to add/remove it as a descendant transaction.

Definition at line 245 of file txmempool.cpp.

Referenced by addUnchecked(), and UpdateForRemoveFromMempool().

◆ UpdateChild()

void CTxMemPool::UpdateChild ( txiter  entry,
txiter  child,
bool  add 
)
private

Definition at line 1040 of file txmempool.cpp.

Referenced by UpdateAncestorsOf(), and UpdateTransactionsFromBlock().

◆ UpdateChildrenForRemoval()

void CTxMemPool::UpdateChildrenForRemoval ( txiter  entry)
private

Sever link between specified transaction and direct children.

Definition at line 260 of file txmempool.cpp.

Referenced by UpdateForRemoveFromMempool().

◆ UpdateForDescendants()

bool CTxMemPool::UpdateForDescendants ( txiter  updateIt,
int  maxDescendantsToVisit,
cacheMap cachedDescendants,
const std::set< uint256 > &  setExclude 
)
private

UpdateForDescendants is used by UpdateTransactionsFromBlock to update the descendants for a single transaction that has been added to the mempool but may have child transactions in the mempool, eg during a chain reorg. setExclude is the set of descendant transactions in the mempool that must not be accounted for (because any descendants in setExclude were added to the mempool after the transaction being updated and hence their state is already reflected in the parent state).

If updating an entry requires looking at more than maxDescendantsToVisit transactions, outside of the ones in setExclude, then give up.

cachedDescendants will be updated with the descendants of the transaction being updated, so that future invocations don't need to walk the same transaction again, if encountered in another transaction chain.

Definition at line 73 of file txmempool.cpp.

Referenced by UpdateTransactionsFromBlock().

◆ UpdateForRemoveFromMempool()

void CTxMemPool::UpdateForRemoveFromMempool ( const setEntries entriesToRemove)
private

For each transaction being removed, update ancestors and any direct children.

Definition at line 268 of file txmempool.cpp.

Referenced by RemoveStaged().

◆ UpdateMinFee()

void CTxMemPool::UpdateMinFee ( const CFeeRate _minReasonableRelayFee)

Definition at line 1100 of file txmempool.cpp.

Referenced by CDSNotificationInterface::UpdatedBlockTip().

◆ UpdateParent()

void CTxMemPool::UpdateParent ( txiter  entry,
txiter  parent,
bool  add 
)
private

◆ UpdateTransactionsFromBlock()

void CTxMemPool::UpdateTransactionsFromBlock ( const std::vector< uint256 > &  hashesToUpdate)

When adding transactions from a disconnected block back to the mempool, new mempool entries may have children in the mempool (which is generally not the case when otherwise adding transactions). UpdateTransactionsFromBlock() will find child transactions and update the descendant state for each transaction in hashesToUpdate (excluding any child transactions present in hashesToUpdate, which are already accounted for). Note: hashesToUpdate should be the set of transactions from the disconnected block that have been accepted back into the mempool.

Definition at line 137 of file txmempool.cpp.

Referenced by DisconnectTip().

◆ WriteFeeEstimates()

bool CTxMemPool::WriteFeeEstimates ( CAutoFile fileout) const

Write/Read estimates to disk

Definition at line 900 of file txmempool.cpp.

Referenced by PrepareShutdown().

Member Data Documentation

◆ blockSinceLastRollingFeeBump

bool CTxMemPool::blockSinceLastRollingFeeBump
mutableprivate

Definition at line 370 of file txmempool.h.

Referenced by _clear(), GetMinFee(), removeForBlock(), and trackPackageRemoved().

◆ cachedInnerUsage

uint64_t CTxMemPool::cachedInnerUsage
private

sum of all mempool tx' byte sizes

Definition at line 365 of file txmempool.h.

Referenced by _clear(), addUnchecked(), check(), DynamicMemoryUsage(), removeUnchecked(), UpdateChild(), and UpdateParent().

◆ cs

◆ lastRollingFeeUpdate

int64_t CTxMemPool::lastRollingFeeUpdate
mutableprivate

Definition at line 369 of file txmempool.h.

Referenced by _clear(), GetMinFee(), and removeForBlock().

◆ mapAddress

addressDeltaMap CTxMemPool::mapAddress
private

Definition at line 426 of file txmempool.h.

Referenced by addAddressIndex(), getAddressIndex(), and removeAddressIndex().

◆ mapAddressInserted

addressDeltaMapInserted CTxMemPool::mapAddressInserted
private

Definition at line 429 of file txmempool.h.

Referenced by addAddressIndex(), and removeAddressIndex().

◆ mapDeltas

std::map<uint256, std::pair<double, CAmount> > CTxMemPool::mapDeltas

◆ mapLinks

◆ mapNextTx

◆ mapSpent

mapSpentIndex CTxMemPool::mapSpent
private

Definition at line 432 of file txmempool.h.

Referenced by addSpentIndex(), getSpentIndex(), and removeSpentIndex().

◆ mapSpentInserted

mapSpentIndexInserted CTxMemPool::mapSpentInserted
private

Definition at line 435 of file txmempool.h.

Referenced by addSpentIndex(), and removeSpentIndex().

◆ mapTx

◆ minerPolicyEstimator

◆ minReasonableRelayFee

CFeeRate CTxMemPool::minReasonableRelayFee
private

sum of dynamic memory usage of all the map elements (NOT the maps themselves)

Definition at line 367 of file txmempool.h.

Referenced by CTxMemPool(), GetMinFee(), TrimToSize(), and UpdateMinFee().

◆ nCheckFrequency

uint32_t CTxMemPool::nCheckFrequency
private

Definition at line 360 of file txmempool.h.

Referenced by check(), CTxMemPool(), removeForReorg(), and setSanityCheck().

◆ nTransactionsUpdated

unsigned int CTxMemPool::nTransactionsUpdated
private

Value n means that n times in 2^32 we check.

Definition at line 361 of file txmempool.h.

Referenced by _clear(), AddTransactionsUpdated(), addUnchecked(), GetTransactionsUpdated(), and removeUnchecked().

◆ ROLLING_FEE_HALFLIFE

const int CTxMemPool::ROLLING_FEE_HALFLIFE = 60 * 60 * 12
static

Definition at line 377 of file txmempool.h.

Referenced by GetMinFee().

◆ rollingMinimumFeeRate

double CTxMemPool::rollingMinimumFeeRate
mutableprivate

Definition at line 371 of file txmempool.h.

Referenced by _clear(), GetMinFee(), and trackPackageRemoved().

◆ totalTxSize

uint64_t CTxMemPool::totalTxSize
private

Definition at line 364 of file txmempool.h.

Referenced by _clear(), addUnchecked(), check(), GetTotalTxSize(), and removeUnchecked().


The documentation for this class was generated from the following files: