URI: 
       tfix check_new_hist: transaction might not be in wallet - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit c638af7803dbee41703d26861527e0f1ee2bf5c6
   DIR parent d451b933695732eddf19ff30a6f321151e4ed186
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Tue, 29 Jan 2013 13:19:00 +0100
       
       fix check_new_hist: transaction might not be in wallet
       
       Diffstat:
         M lib/wallet.py                       |       3 +++
       
       1 file changed, 3 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -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