| 667 | return false; |
| 668 | } |
| 669 | RBFTransactionState isRBFOptIn(const CTransaction& tx) override |
| 670 | { |
| 671 | if (!m_node.mempool) return IsRBFOptInEmptyMempool(tx); |
| 672 | LOCK(m_node.mempool->cs); |
| 673 | return IsRBFOptIn(tx, *m_node.mempool); |
| 674 | } |
| 675 | bool isInMempool(const Txid& txid) override |
| 676 | { |
| 677 | if (!m_node.mempool) return false; |
no test coverage detected