export: list transaction in chronological order

This commit is contained in:
pythcoiner 2025-01-13 12:51:05 +01:00
parent f46efa2a33
commit 19b7414e7b
No known key found for this signature in database
GPG Key ID: C1048AEEDF303B88

View File

@ -268,7 +268,7 @@ impl State {
}
let mut txs: Vec<_> = map.into_values().collect();
txs.sort_by(|a, b| a.compare(b));
txs.sort_by(|a, b| b.compare(a));
for mut tx in txs {
let date_time = tx