Use mempool/txgraph to determine if a tx has descendants

Remove a reference to GetCountWithDescendants() in preparation for removing
this function and the associated cached state from the mempool.
This commit is contained in:
Suhas Daftuar
2023-10-03 11:19:15 -04:00
parent 69e1eaa6ed
commit bdcefb8a8b
3 changed files with 11 additions and 4 deletions

View File

@@ -665,10 +665,7 @@ public:
bool hasDescendantsInMempool(const Txid& txid) override
{
if (!m_node.mempool) return false;
LOCK(m_node.mempool->cs);
const auto entry{m_node.mempool->GetEntry(txid)};
if (entry == nullptr) return false;
return entry->GetCountWithDescendants() > 1;
return m_node.mempool->HasDescendants(txid);
}
bool broadcastTransaction(const CTransactionRef& tx,
const CAmount& max_tx_fee,