Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
9
bool 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
PreChecks
Method · 0.85
IsRBFOptIn
Function · 0.85
IsRBFOptInEmptyMempool
Function · 0.85
feebumper.cpp
File · 0.85
FUZZ_TARGET_INIT
Function · 0.85
ConstructTransaction
Function · 0.85
Calls
no outgoing calls
Tested by
1
FUZZ_TARGET_INIT
Function · 0.68