mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
fix hardware plugins with tx.error
This commit is contained in:
parent
692d215f26
commit
8347ad5449
2 changed files with 2 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue