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

Function SignalsOptInRBF

src/util/rbf.cpp:9–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 6

PreChecksMethod · 0.85
IsRBFOptInFunction · 0.85
IsRBFOptInEmptyMempoolFunction · 0.85
feebumper.cppFile · 0.85
FUZZ_TARGET_INITFunction · 0.85
ConstructTransactionFunction · 0.85

Calls

no outgoing calls

Tested by 1

FUZZ_TARGET_INITFunction · 0.68