Revert sorting changes.

This commit is contained in:
Kevin Gorham 2020-02-21 19:13:17 -05:00
parent 109673fe97
commit 8c93840671
No known key found for this signature in database
GPG Key ID: CCA55602DF49FC38
1 changed files with 3 additions and 2 deletions

View File

@ -168,8 +168,9 @@ interface TransactionDao {
WHERE ( transactions.raw IS NULL
AND received_notes.is_change != 1 )
OR ( transactions.raw IS NOT NULL )
ORDER BY blocktimeinseconds DESC,
minedHeight DESC,
ORDER BY ( minedheight IS NOT NULL ),
minedheight DESC,
blocktimeinseconds DESC,
id DESC
LIMIT :limit
""")