fix hardware plugins with tx.error

This commit is contained in:
ThomasV 2014-10-24 07:49:20 +02:00
parent 692d215f26
commit 8347ad5449
2 changed files with 2 additions and 0 deletions

View File

@ -92,6 +92,7 @@ class Plugin(BasePlugin):
@hook
def send_tx(self, tx):
tx.error = None
try:
self.wallet.sign_transaction(tx, None, None)
except Exception as e:

View File

@ -119,6 +119,7 @@ class Plugin(BasePlugin):
@hook
def send_tx(self, tx):
tx.error = None
try:
self.wallet.sign_transaction(tx, None, None)
except Exception as e: