bitcoin-tx: rbfoptin: Avoid touching nSequence if the value is already opting in

pull/9672/head
Luke Dashjr 8 years ago
parent b005bf21a7
commit 23b0fe34f5

@ -216,7 +216,9 @@ static void MutateTxRBFOptIn(CMutableTransaction& tx, const std::string& strInId
int cnt = 0; int cnt = 0;
for (CTxIn& txin : tx.vin) { for (CTxIn& txin : tx.vin) {
if (strInIdx == "" || cnt == inIdx) { if (strInIdx == "" || cnt == inIdx) {
txin.nSequence = MAX_BIP125_RBF_SEQUENCE; if (txin.nSequence > MAX_BIP125_RBF_SEQUENCE) {
txin.nSequence = MAX_BIP125_RBF_SEQUENCE;
}
} }
++cnt; ++cnt;
} }

Loading…
Cancel
Save