Skip to content

Commit

Permalink
Change the memory config in the test builder to default()
Browse files Browse the repository at this point in the history
  • Loading branch information
Golovanov399 committed Jan 21, 2025
1 parent 91ca222 commit 7389127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/vm/src/arch/testing/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ impl VmChipTestBuilder<BabyBear> {

impl<F: PrimeField32> Default for VmChipTestBuilder<F> {
fn default() -> Self {
let mem_config = MemoryConfig::new(2, 1, 29, 29, 17, 64, 1 << 22);
let mem_config = MemoryConfig::default();
let range_checker = SharedVariableRangeCheckerChip::new(VariableRangeCheckerBus::new(
RANGE_CHECKER_BUS,
mem_config.decomp,
Expand Down

0 comments on commit 7389127

Please sign in to comment.