trezor: raise and catch BaseException in signing
This commit is contained in:
@@ -35,7 +35,7 @@ class WaitingDialog(QThread):
|
|||||||
self.error = None
|
self.error = None
|
||||||
try:
|
try:
|
||||||
self.result = self.run_task()
|
self.result = self.run_task()
|
||||||
except Exception as e:
|
except BaseException as e:
|
||||||
traceback.print_exc(file=sys.stdout)
|
traceback.print_exc(file=sys.stdout)
|
||||||
self.error = str(e)
|
self.error = str(e)
|
||||||
self.d.emit(SIGNAL('done'))
|
self.d.emit(SIGNAL('done'))
|
||||||
|
|||||||
@@ -322,8 +322,10 @@ class BTChipWallet(NewWallet):
|
|||||||
return b64encode(chr(27 + 4 + (signature[0] & 0x01)) + r + s)
|
return b64encode(chr(27 + 4 + (signature[0] & 0x01)) + r + s)
|
||||||
|
|
||||||
def sign_transaction(self, tx, keypairs, password):
|
def sign_transaction(self, tx, keypairs, password):
|
||||||
if tx.error or tx.is_complete():
|
if tx.is_complete():
|
||||||
return
|
return
|
||||||
|
if tx.error:
|
||||||
|
raise BaseException(tx.error)
|
||||||
self.signing = True
|
self.signing = True
|
||||||
inputs = []
|
inputs = []
|
||||||
inputsPaths = []
|
inputsPaths = []
|
||||||
|
|||||||
@@ -274,8 +274,10 @@ class TrezorWallet(NewWallet):
|
|||||||
return str(b64_msg_sig)
|
return str(b64_msg_sig)
|
||||||
|
|
||||||
def sign_transaction(self, tx, keypairs, password):
|
def sign_transaction(self, tx, keypairs, password):
|
||||||
if tx.error or tx.is_complete():
|
if tx.is_complete():
|
||||||
return
|
return
|
||||||
|
if tx.error:
|
||||||
|
raise BaseException(tx.error)
|
||||||
|
|
||||||
if not self.check_proper_device():
|
if not self.check_proper_device():
|
||||||
give_error('Wrong device or password')
|
give_error('Wrong device or password')
|
||||||
|
|||||||
Reference in New Issue
Block a user