fix iteration bug

This commit is contained in:
ThomasV 2017-09-15 12:07:57 +02:00
parent 302dd3912d
commit d7dc804b32
1 changed files with 1 additions and 1 deletions

View File

@ -648,7 +648,7 @@ class Abstract_Wallet(PrintError):
self.pruned_txo.pop(ser)
# add tx to pruned_txo, and undo the txi addition
for next_tx, dd in self.txi.items():
for addr, l in dd.items():
for addr, l in list(dd.items()):
ll = l[:]
for item in ll:
ser, v = item