URI: 
       tfix verified_tx iteration - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 036d5746a3e977eb9150171d00e844c0ae4fa5c4
   DIR parent d7f29374c97e6a70274ecdd1313aebf9d88915c8
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Fri,  3 Nov 2017 14:08:46 +0100
       
       fix verified_tx iteration
       
       Diffstat:
         M lib/wallet.py                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -311,7 +311,7 @@ class Abstract_Wallet(PrintError):
                '''Used by the verifier when a reorg has happened'''
                txs = set()
                with self.lock:
       -            for tx_hash, item in self.verified_tx.items():
       +            for tx_hash, item in list(self.verified_tx.items()):
                        tx_height, timestamp, pos = item
                        if tx_height >= height:
                            header = blockchain.read_header(tx_height)