commit cd097d6bb8e5e89b25620f9ee62764bfb7b8f583
parent eb96d422f7f7c7df40bb3a028b573263a1680e9a
Author: SomberNight <somber.night@protonmail.com>
Date: Sun, 10 Feb 2019 06:36:58 +0100
qt history list: update_tx_mined_status was not updating 'date' for tx
fixes #5096
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py
@@ -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)