history: show pending on top

This commit is contained in:
Jaquee
2016-12-31 14:56:08 +01:00
parent d8f9e7360f
commit f012e4d968
2 changed files with 6 additions and 2 deletions

View File

@@ -75,7 +75,11 @@ QVariant TransactionHistoryModel::data(const QModelIndex &index, int role) const
result = tInfo->fee();
break;
case TransactionBlockHeightRole:
result = tInfo->blockHeight();
// Use NULL QVariant for transactions without height.
// Forces them to be displayed at top when sorted by blockHeight.
if (tInfo->blockHeight() != 0) {
result = tInfo->blockHeight();
}
break;
case TransactionHashRole:
result = tInfo->hash();