Skip to content

Commit

Permalink
Merge #1281: Order history txs in home state
Browse files Browse the repository at this point in the history
887b713 Order history txs in home state (edouardparis)

Pull request description:

ACKs for top commit:
  edouardparis:
    Self-ACK 887b713

Tree-SHA512: f091f29b1c0b96b80fbacc40ece131edce2d2bfd571cc239b84295c59880e796cb787c3c086b37adb67bef2a0ae428dd86d4a274b1b51208fe90bde77aceb858
  • Loading branch information
edouardparis committed Sep 6, 2024
2 parents e152714 + 887b713 commit b9aaea1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gui/src/app/state/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ impl State for Home {
Ok(events) => {
self.warning = None;
self.events = events;
self.events.sort_by(|a, b| b.time.cmp(&a.time));
}
},
Message::HistoryTransactionsExtension(res) => match res {
Expand Down

0 comments on commit b9aaea1

Please sign in to comment.