Skip to content

Commit

Permalink
Merge #1540: export: list transaction in chronological order
Browse files Browse the repository at this point in the history
3a99057 export: list transaction in chronological order (pythcoiner)

Pull request description:

  backport of #1537

ACKs for top commit:
  edouardparis:
    Self-ACK 3a99057

Tree-SHA512: 6ae1bb7b9a601cdb377af5a7ab091dfc8cf29bdefa7e7156b6c2f5dbce7810f69ecbdacd3c23b348bcc1812b7b1d9543830d2979db692cfb6df1db1ff6d091b1
  • Loading branch information
edouardparis committed Jan 14, 2025
2 parents 227be9d + 3a99057 commit 23bb7cb
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 23bb7cb

Please sign in to comment.