mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
cleanup on error handling when a transaction is cancelled
This commit is contained in:
parent
0d4805f6fd
commit
c73ea700e1
1 changed files with 3 additions and 2 deletions
|
@ -238,9 +238,10 @@ class Plugin(BasePlugin):
|
||||||
try:
|
try:
|
||||||
signed_tx = client.sign_tx('Bitcoin', inputs, outputs)[1]
|
signed_tx = client.sign_tx('Bitcoin', inputs, outputs)[1]
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
give_error(e)
|
|
||||||
finally:
|
|
||||||
self.handler.stop()
|
self.handler.stop()
|
||||||
|
give_error(e)
|
||||||
|
|
||||||
|
self.handler.stop()
|
||||||
|
|
||||||
raw = signed_tx.encode('hex')
|
raw = signed_tx.encode('hex')
|
||||||
tx.update_signatures(raw)
|
tx.update_signatures(raw)
|
||||||
|
|
Loading…
Add table
Reference in a new issue