qt history list: update_tx_mined_status was not updating 'date' for tx

fixes #5096
This commit is contained in:
SomberNight 2019-02-10 06:36:58 +01:00
parent eb96d422f7
commit cd097d6bb8
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -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)