Browse Source

sweep txs are now always RBF

seed_v14
SomberNight 7 years ago
parent
commit
0a1ebea669
  1. 1
      lib/wallet.py

1
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

Loading…
Cancel
Save