Skip to content

Commit 267953e

Browse files
authored
fix: reduce state size cache (#4858)
1 parent 842c9bf commit 267953e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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 = 2048;
78+
const MAX_CACHED_STATES: usize = 64;
7979

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

0 commit comments

Comments
 (0)