Skip to content

Commit a9373d6

Browse files
committed
fix: bump max dict values
1 parent fc4f3d4 commit a9373d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/cheatcodes/src/inspector.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ use std::{
7777
mod utils;
7878

7979
pub mod analysis;
80-
pub use analysis::*;
80+
pub use analysis::CheatcodeAnalysis;
8181

8282
pub type Ecx<'a, 'b, 'c> = &'a mut EthEvmContext<&'b mut (dyn DatabaseExt + 'c)>;
8383

crates/config/src/fuzz.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ impl Default for FuzzDictionaryConfig {
9595
include_push_bytes: true,
9696
// limit this to 300MB
9797
max_fuzz_dictionary_addresses: (300 * 1024 * 1024) / 20,
98-
// limit this to 200MB
99-
max_fuzz_dictionary_values: (200 * 1024 * 1024) / 32,
98+
// limit this to 300MB
99+
max_fuzz_dictionary_values: (300 * 1024 * 1024) / 20,
100100
// limit this to 200MB
101101
max_fuzz_dictionary_literals: (200 * 1024 * 1024) / 32,
102102
}

0 commit comments

Comments
 (0)