Browse Source

fix prev: txns might be added in any order

3.2.x
SomberNight 7 years ago
parent
commit
92c45ac29a
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 1
      lib/wallet.py

1
lib/wallet.py

@ -900,6 +900,7 @@ class Abstract_Wallet(PrintError):
if dd.get(addr) is None:
dd[addr] = []
dd[addr].append((ser, v))
self._add_tx_to_local_history(next_tx)
# add to local history
self._add_tx_to_local_history(tx_hash)
# save

Loading…
Cancel
Save