fix check_new_hist: transaction might not be in wallet

This commit is contained in:
thomasv 2013-01-29 13:19:00 +01:00
parent d451b93369
commit c638af7803
1 changed files with 3 additions and 0 deletions

View File

@ -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