Browse Source

cleanup on error handling when a transaction is cancelled

master
Darin Stanchfield 10 years ago
parent
commit
c73ea700e1
  1. 5
      plugins/keepkey.py

5
plugins/keepkey.py

@ -238,9 +238,10 @@ class Plugin(BasePlugin):
try:
signed_tx = client.sign_tx('Bitcoin', inputs, outputs)[1]
except Exception, e:
give_error(e)
finally:
self.handler.stop()
give_error(e)
self.handler.stop()
raw = signed_tx.encode('hex')
tx.update_signatures(raw)

Loading…
Cancel
Save