We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e5ef3 commit e4dc39bCopy full SHA for e4dc39b
src/policy/rbf.cpp
@@ -7,7 +7,7 @@
7
bool SignalsOptInRBF(const CTransaction &tx)
8
{
9
for (const CTxIn &txin : tx.vin) {
10
- if (txin.nSequence < std::numeric_limits<unsigned int>::max()-1) {
+ if (txin.nSequence <= MAX_BIP125_RBF_SEQUENCE) {
11
return true;
12
}
13
0 commit comments