MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / hasDescendantsInMempool

Method hasDescendantsInMempool

src/node/interfaces.cpp:680–684  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

678 return m_node.mempool->exists(txid);
679 }
680 bool hasDescendantsInMempool(const Txid& txid) override
681 {
682 if (!m_node.mempool) return false;
683 return m_node.mempool->HasDescendants(txid);
684 }
685 bool broadcastTransaction(const CTransactionRef& tx,
686 const CAmount& max_tx_fee,
687 TxBroadcast broadcast_method,

Callers 1

feebumper.cppFile · 0.80

Calls 1

HasDescendantsMethod · 0.80

Tested by

no test coverage detected