Merge #1537: export: list transaction in chronological order

19b7414e7be5d8fd0b89963edc8254616d14ae85 export: list transaction in chronological order (pythcoiner)

Pull request description:

  closes #1536

ACKs for top commit:
  edouardparis:
    ACK 19b7414e7be5d8fd0b89963edc8254616d14ae85

Tree-SHA512: c9442a65b770cf408c79d5fd4d68d025ccb92a7a322f4402e23620aec96f458eb2c30856d47d11fbaa6b03631c1638a655abfc26eedfc1fac60249055f0be27b
This commit is contained in:
edouardparis 2025-01-14 12:20:29 +01:00
commit ba01c78b4b
No known key found for this signature in database
GPG Key ID: E65F7A089C20DC8F

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