URI: 
       tmmonir python3 fix - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 6b871a7cfd6705c59c8013a57d6923f3f8b166d7
   DIR parent 5e61ff18ac29ae303fbb0d9479d2824d7fcaf6ec
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon,  4 Sep 2017 14:21:02 +0200
       
       mmonir python3 fix
       
       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@@ -643,7 +643,7 @@ class Abstract_Wallet(PrintError):
                with self.transaction_lock:
                    self.print_error("removing tx from history", tx_hash)
                    #tx = self.transactions.pop(tx_hash)
       -            for ser, hh in self.pruned_txo.items():
       +            for ser, hh in list(self.pruned_txo.items()):
                        if hh == tx_hash:
                            self.pruned_txo.pop(ser)
                    # add tx to pruned_txo, and undo the txi addition