mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 08:51:32 +00:00
fix: get_tx_value
This commit is contained in:
parent
99022f51bc
commit
4788ea62de
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class ElectrumGui:
|
||||||
b = 0
|
b = 0
|
||||||
messages = []
|
messages = []
|
||||||
for tx in self.wallet.get_tx_history():
|
for tx in self.wallet.get_tx_history():
|
||||||
v = tx['value']
|
v = self.wallet.get_tx_value(tx['tx_hash'])
|
||||||
b += v
|
b += v
|
||||||
try:
|
try:
|
||||||
time_str = str( datetime.datetime.fromtimestamp( tx['timestamp']))
|
time_str = str( datetime.datetime.fromtimestamp( tx['timestamp']))
|
||||||
|
|
Loading…
Add table
Reference in a new issue