mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 23:41:35 +00:00
mmonir python3 fix
This commit is contained in:
parent
5e61ff18ac
commit
6b871a7cfd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue