Merge pull request #3012 from SomberNight/sweep_rbf

make sweep txs always RBF
This commit is contained in:
ThomasV 2017-10-10 19:55:38 +02:00 committed by GitHub
commit e0faf90a5a
1 changed files with 1 additions and 0 deletions

View File

@ -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