CTxMemPool::GetDescendantCount

GetDescendantCount overloads

Synopses

Declared in <txmempool.h>

Returns the number of in-mempool descendants of the entry at the given iterator (including itself).

int64_t
GetDescendantCount(txiter it) const;
» more...

Returns the number of in-mempool descendants of the given entry (including itself).

int64_t
GetDescendantCount(CTxMemPoolEntry const& e) const;
» more...

Return Value

The descendant count.

Parameters

NameDescription
itIterator to the entry.
eThe mempool entry.