helper function without decorator: sign_tx_with_password

This commit is contained in:
ThomasV 2015-09-11 17:38:01 +02:00
parent 483cf2286f
commit 7f7d73a4a9
1 changed files with 5 additions and 2 deletions

View File

@ -1219,10 +1219,13 @@ class ElectrumWindow(QMainWindow, PrintError):
self.do_clear()
else:
self.broadcast_transaction(tx, tx_desc)
self.sign_tx(tx, sign_done, password)
self.sign_tx_with_password(tx, sign_done, password)
@protected
def sign_tx(self, tx, callback, password, parent=None):
self.sign_tx_with_password(tx, callback, password, parent)
def sign_tx_with_password(self, tx, callback, password, parent=None):
'''Sign the transaction in a separate thread. When done, calls
the callback with a success code of True or False.
'''