Browse Source

fix check_new_hist: transaction might not be in wallet

283
thomasv 12 years ago
parent
commit
c638af7803
  1. 3
      lib/wallet.py

3
lib/wallet.py

@ -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…
Cancel
Save