Skip to content

Commit

Permalink
export: list transaction in chronological order
Browse files Browse the repository at this point in the history
  • Loading branch information
pythcoiner authored and edouardparis committed Jan 14, 2025
1 parent 227be9d commit 3a99057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liana-gui/src/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3a99057

Please sign in to comment.