1
0

wallet: minor clean-up of tx.set_rbf() calls

Better to always call it, to make sure inputs have identical sequence numbers.
This commit is contained in:
SomberNight
2021-02-11 21:52:34 +01:00
parent ca86e35724
commit 914eb9989d
5 changed files with 12 additions and 14 deletions

View File

@@ -282,8 +282,7 @@ class TxDialog(Factory.Popup):
except CannotBumpFee as e:
self.app.show_error(str(e))
return
if is_final:
new_tx.set_rbf(False)
new_tx.set_rbf(not is_final)
self.tx = new_tx
self.update()
self.do_sign()