Merge #1281: Order history txs in home state

887b71367bebe277740443ff4e2d0f1470d2c0ab Order history txs in home state (edouardparis)

Pull request description:

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

Tree-SHA512: f091f29b1c0b96b80fbacc40ece131edce2d2bfd571cc239b84295c59880e796cb787c3c086b37adb67bef2a0ae428dd86d4a274b1b51208fe90bde77aceb858
This commit is contained in:
edouardparis 2024-09-06 14:57:31 +02:00
commit b9aaea1429
No known key found for this signature in database
GPG Key ID: E65F7A089C20DC8F

View File

@ -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 {