From 0a1ebea669464378d21621b8c002e641c6fe8fbc Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 10 Oct 2017 19:53:28 +0200 Subject: [PATCH] sweep txs are now always RBF --- lib/wallet.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/wallet.py b/lib/wallet.py index 43235415f..0dfca00d4 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -911,6 +911,7 @@ class Abstract_Wallet(PrintError): outputs = [(TYPE_ADDRESS, recipient, total - fee)] tx = Transaction.from_io(inputs, outputs) + tx.set_rbf(True) tx.sign(keypairs) return tx