mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 03:29:24 +00:00
history: fix csv export sort order
This commit is contained in:
parent
2c6c08df92
commit
dd53dfac6e
1 changed files with 1 additions and 1 deletions
|
@ -344,7 +344,7 @@ bool TransactionHistory::writeCSV(const QString &path) {
|
|||
|
||||
auto transactions = m_rows;
|
||||
|
||||
std::sort(m_rows.begin(), m_rows.end(), [](const TransactionRow *info1, const TransactionRow *info2){
|
||||
std::sort(transactions.begin(), transactions.end(), [](const TransactionRow *info1, const TransactionRow *info2){
|
||||
return info1->blockHeight() < info2->blockHeight();
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue