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

Function SignalsOptInRBF

src/util/rbf.cpp:11–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9#include <vector>
10
11bool SignalsOptInRBF(const CTransaction &tx)
12{
13 for (const CTxIn &txin : tx.vin) {
14 if (txin.nSequence <= MAX_BIP125_RBF_SEQUENCE) {
15 return true;
16 }
17 }
18 return false;
19}

Callers 4

IsRBFOptInFunction · 0.85
IsRBFOptInEmptyMempoolFunction · 0.85
transaction.cppFile · 0.85
ConstructTransactionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected