[#CTxMemPool-CalculateDescendantData] = xref:CTxMemPool.adoc[CTxMemPool]::CalculateDescendantData :relfileprefix: ../ :mrdocs: Compute the count, aggregate size, and aggregate fee of an entry's in‐mempool descendants. == Synopsis Declared in `<txmempool.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[requires_capability(0x7ff37b41f168), requires_capability(0x7ff376fd6b18), requires_capability(0x7ff38def5d38), requires_capability(0x7ff3640f6d48), requires_capability(0x7ff3920f7038), requires_capability(0x7ff37f5c9158), requires_capability(0x7ff37d0103d8), requires_capability(0x7ff374c13be8)]] std::tuple<size_t, size_t, CAmount> CalculateDescendantData(xref:CTxMemPoolEntry.adoc[CTxMemPoolEntry] const& entry) const; ---- == Return Value A tuple of descendant count, descendant size, and descendant fees. == Parameters [cols="1,4"] |=== | Name| Description | *entry* | The entry whose descendant data is computed. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#