Skip to content

Commit

Permalink
ahash InMemMap (#3803)
Browse files Browse the repository at this point in the history
  • Loading branch information
bw-solana authored Dec 3, 2024
1 parent f4644d6 commit 6770483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accounts-db/src/accounts_index/in_mem_accounts_index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use {
type K = Pubkey;
type CacheRangesHeld = RwLock<Vec<RangeInclusive<Pubkey>>>;

type InMemMap<T> = HashMap<Pubkey, AccountMapEntry<T>>;
type InMemMap<T> = HashMap<Pubkey, AccountMapEntry<T>, ahash::RandomState>;

#[derive(Debug, Default)]
pub struct StartupStats {
Expand Down

0 comments on commit 6770483

Please sign in to comment.