| 50 | } |
| 51 | |
| 52 | RBFTransactionState IsRBFOptInEmptyMempool(const CTransaction& tx) |
| 53 | { |
| 54 | // If we don't have a local mempool we can only check the transaction itself. |
| 55 | return SignalsOptInRBF(tx) ? RBFTransactionState::REPLACEABLE_BIP125 : RBFTransactionState::UNKNOWN; |
| 56 | } |
| 57 | |
| 58 | std::optional<std::string> GetEntriesForConflicts(const CTransaction& tx, |
| 59 | CTxMemPool& pool, |
no test coverage detected