mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
fix iteration bug
This commit is contained in:
parent
302dd3912d
commit
d7dc804b32
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue