MCPcopy Create free account
hub / github.com/ElementsProject/elements / isRBFOptIn

Method isRBFOptIn

src/node/interfaces.cpp:569–574  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers 1

WalletTxToJSONFunction · 0.80

Calls 2

IsRBFOptInEmptyMempoolFunction · 0.85
IsRBFOptInFunction · 0.85

Tested by

no test coverage detected