Skip to content

Commit 56e6d02

Browse files
committed
Change BalancesMap to BTreeMap instead of HashMap
1 parent 54039e1 commit 56e6d02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

primitives/src/balances_map.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use std::collections::HashMap;
1+
use std::collections::BTreeMap;
22

33
use crate::BigNum;
44

5-
pub type BalancesMap = HashMap<String, BigNum>;
5+
pub type BalancesMap = BTreeMap<String, BigNum>;

0 commit comments

Comments
 (0)