mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 17:55:20 +00:00
disable save button for partially signed tx
This commit is contained in:
parent
b009c56b9d
commit
e0122f8c63
1 changed files with 2 additions and 1 deletions
|
@ -179,7 +179,8 @@ class TxDialog(QDialog, MessageBoxMixin):
|
||||||
|
|
||||||
def sign(self):
|
def sign(self):
|
||||||
def sign_done(success):
|
def sign_done(success):
|
||||||
if success:
|
# note: with segwit we could save partially signed tx, because they have a txid
|
||||||
|
if self.tx.is_complete():
|
||||||
self.prompt_if_unsaved = True
|
self.prompt_if_unsaved = True
|
||||||
self.saved = False
|
self.saved = False
|
||||||
self.save_button.setDisabled(False)
|
self.save_button.setDisabled(False)
|
||||||
|
|
Loading…
Add table
Reference in a new issue