1
0
forked from GRIN/grim

wallets: sort by id

This commit is contained in:
ardocrat
2023-08-11 02:53:35 +03:00
parent ada4575392
commit 1261e3ef30
+2
View File
@@ -53,6 +53,8 @@ impl WalletList {
}
}
}
// Sort wallets by id.
wallets.sort_by_key(|w| w.config.id);
wallets
}