mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-29 00:11:36 +00:00
fix #1906
This commit is contained in:
parent
8423f8394f
commit
c367cd64ad
1 changed files with 1 additions and 1 deletions
|
@ -2118,7 +2118,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
|
||||||
history = wallet.get_history()
|
history = wallet.get_history()
|
||||||
lines = []
|
lines = []
|
||||||
for item in history:
|
for item in history:
|
||||||
tx_hash, height, conf, timestamp, value, balance = item
|
tx_hash, height, confirmations, timestamp, value, balance = item
|
||||||
if height>0:
|
if height>0:
|
||||||
if timestamp is not None:
|
if timestamp is not None:
|
||||||
time_string = format_time(timestamp)
|
time_string = format_time(timestamp)
|
||||||
|
|
Loading…
Add table
Reference in a new issue