mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
fix check_new_hist: transaction might not be in wallet
This commit is contained in:
parent
d451b93369
commit
c638af7803
1 changed files with 3 additions and 0 deletions
|
@ -1134,6 +1134,9 @@ class Wallet:
|
|||
|
||||
if not found:
|
||||
tx = self.transactions.get(tx_hash)
|
||||
# tx might not be there
|
||||
if not tx: continue
|
||||
|
||||
# already verified?
|
||||
if tx.get('height'):
|
||||
continue
|
||||
|
|
Loading…
Add table
Reference in a new issue