mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
qt history list: update_tx_mined_status was not updating 'date' for tx
fixes #5096
This commit is contained in:
parent
eb96d422f7
commit
cd097d6bb8
1 changed files with 2 additions and 1 deletions
|
@ -34,7 +34,7 @@ from decimal import Decimal
|
|||
from electrum.address_synchronizer import TX_HEIGHT_LOCAL
|
||||
from electrum.i18n import _
|
||||
from electrum.util import (block_explorer_URL, profiler, print_error, TxMinedInfo,
|
||||
OrderedDictWithIndex, PrintError)
|
||||
OrderedDictWithIndex, PrintError, timestamp_to_datetime)
|
||||
|
||||
from .util import *
|
||||
|
||||
|
@ -290,6 +290,7 @@ class HistoryModel(QAbstractItemModel, PrintError):
|
|||
'confirmations': tx_mined_info.conf,
|
||||
'timestamp': tx_mined_info.timestamp,
|
||||
'txpos_in_block': tx_mined_info.txpos,
|
||||
'date': timestamp_to_datetime(tx_mined_info.timestamp),
|
||||
})
|
||||
topLeft = self.createIndex(row, 0)
|
||||
bottomRight = self.createIndex(row, len(HistoryColumns) - 1)
|
||||
|
|
Loading…
Add table
Reference in a new issue