[#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(0x7f2e1b5a1798), requires_capability(0x7f2e2721a7a8), requires_capability(0x7f2e421cbeb8), requires_capability(0x7f2e2880ae78), requires_capability(0x7f2e3212e208), requires_capability(0x7f2e347f6898), requires_capability(0x7f2e2b05ad08), requires_capability(0x7f2e2bee23a8)]] 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]#