| 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, |
no test coverage detected