electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 23ec426b4f419c3004d043cf67b7d89f3f2f7651
parent 811169da4b9a31388cc1d9e8e2cac738f14eded9
Author: SomberNight <somber.night@protonmail.com>
Date:   Thu, 13 Jun 2019 01:03:56 +0200

qt history list: tweak sort order of items

Diffstat:
Melectrum/gui/qt/history_list.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py @@ -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,