mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 07:23:25 +00:00
fix get_history
This commit is contained in:
parent
f051a3e577
commit
da502076bd
1 changed files with 1 additions and 1 deletions
|
@ -738,7 +738,7 @@ class Abstract_Wallet(object):
|
|||
merged[tx_hash] = (height, delta)
|
||||
else:
|
||||
h, d = merged.get(tx_hash)
|
||||
merged[tx_hash] = (h, d + delta)
|
||||
merged[tx_hash] = (h, d + delta if (d is not None and delta is not None) else None)
|
||||
|
||||
# 3. create sorted list
|
||||
history = []
|
||||
|
|
Loading…
Add table
Reference in a new issue