Order history txs in home state

This commit is contained in:
edouardparis 2024-09-06 14:51:29 +02:00
parent e152714756
commit 887b71367b

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 {