| 567 | return false; |
| 568 | } |
| 569 | RBFTransactionState isRBFOptIn(const CTransaction& tx) override |
| 570 | { |
| 571 | if (!m_node.mempool) return IsRBFOptInEmptyMempool(tx); |
| 572 | LOCK(m_node.mempool->cs); |
| 573 | return IsRBFOptIn(tx, *m_node.mempool); |
| 574 | } |
| 575 | bool isInMempool(const uint256& txid) override |
| 576 | { |
| 577 | if (!m_node.mempool) return false; |
no test coverage detected