From 4361dd9a4b0692380818da7be22084dbf94de0cd Mon Sep 17 00:00:00 2001 From: /dev/fd0 Date: Fri, 26 Jun 2026 02:43:58 +0530 Subject: [PATCH] Fix RBF detection to use the BIP-125 sequence threshold --- app/walletFingerprintAnalysis.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/walletFingerprintAnalysis.js b/app/walletFingerprintAnalysis.js index 476de6c..5146593 100644 --- a/app/walletFingerprintAnalysis.js +++ b/app/walletFingerprintAnalysis.js @@ -308,7 +308,7 @@ function analyzeTransaction(tx, txInputs, txBlockHeight, currentBlockHeight, ext version: tx.version, haveInputData, antiFeeSniping: tx.locktime > 0, - rbf: inputs.some((i) => i.sequence != null && i.sequence < 0xffffffff), + rbf: inputs.some((i) => i.sequence != null && i.sequence < 0xfffffffe), onlyNativeSegwit: haveInputData && inTypes.every((t) => t === "p2wpkh"), multiType: inTypes.length > 1, compressed: compressedKeysOnly(inputs),