1
0

qt history list: tweak sort order of items

This commit is contained in:
SomberNight
2019-06-13 01:03:56 +02:00
parent 811169da4b
commit 23ec426b4f

View File

@@ -149,7 +149,7 @@ class HistoryModel(QAbstractItemModel, Logger):
HistoryColumns.STATUS_ICON:
# height breaks ties for unverified txns
# txpos breaks ties for verified same block txns
(status, conf, -height, -txpos),
(conf, -status, -height, -txpos),
HistoryColumns.STATUS_TEXT: status_str,
HistoryColumns.DESCRIPTION: tx_item['label'],
HistoryColumns.COIN_VALUE: tx_item['value'].value,