MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / isRBFOptIn

Method isRBFOptIn

src/node/interfaces.cpp:669–674  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers 1

transactions.cppFile · 0.80

Calls 2

IsRBFOptInEmptyMempoolFunction · 0.85
IsRBFOptInFunction · 0.85

Tested by

no test coverage detected