Skip to content

Commit 7c20662

Browse files
authored
fix: reduce max cached state count (#4932)
Needed to avoid swapping in the synthetix repo
1 parent 68639d2 commit 7c20662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: crates/edr_provider/src/data.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ use crate::{
7575
};
7676

7777
const DEFAULT_INITIAL_BASE_FEE_PER_GAS: u64 = 1_000_000_000;
78-
const MAX_CACHED_STATES: usize = 64;
78+
const MAX_CACHED_STATES: usize = 10;
7979

8080
/// The result of executing an `eth_call`.
8181
#[derive(Clone, Debug)]

0 commit comments

Comments
 (0)