disable save button for partially signed tx

This commit is contained in:
ThomasV 2018-03-13 14:54:21 +01:00
parent b009c56b9d
commit e0122f8c63

View file

@ -179,7 +179,8 @@ class TxDialog(QDialog, MessageBoxMixin):
def sign(self):
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.saved = False
self.save_button.setDisabled(False)