| 42 | } |
| 43 | |
| 44 | RBFTransactionState IsRBFOptInEmptyMempool(const CTransaction& tx) |
| 45 | { |
| 46 | // If we don't have a local mempool we can only check the transaction itself. |
| 47 | return SignalsOptInRBF(tx) ? RBFTransactionState::REPLACEABLE_BIP125 : RBFTransactionState::UNKNOWN; |
| 48 | } |
| 49 | |
| 50 | std::optional<std::string> GetEntriesForConflicts(const CTransaction& tx, |
| 51 | CTxMemPool& pool, |
no test coverage detected