fix iteration bug
This commit is contained in:
@@ -648,7 +648,7 @@ class Abstract_Wallet(PrintError):
|
|||||||
self.pruned_txo.pop(ser)
|
self.pruned_txo.pop(ser)
|
||||||
# add tx to pruned_txo, and undo the txi addition
|
# add tx to pruned_txo, and undo the txi addition
|
||||||
for next_tx, dd in self.txi.items():
|
for next_tx, dd in self.txi.items():
|
||||||
for addr, l in dd.items():
|
for addr, l in list(dd.items()):
|
||||||
ll = l[:]
|
ll = l[:]
|
||||||
for item in ll:
|
for item in ll:
|
||||||
ser, v = item
|
ser, v = item
|
||||||
|
|||||||
Reference in New Issue
Block a user