From ec41b754a67ac4e8fe197522ed8376ae20ff4d5f Mon Sep 17 00:00:00 2001 From: Robin Salen <30937548+Nashtare@users.noreply.github.com> Date: Thu, 9 Nov 2023 17:21:21 -0500 Subject: [PATCH] Fix ranges in AllRecursiveCircuits initialization for log_opcode aggregation test (#1345) --- evm/tests/log_opcode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evm/tests/log_opcode.rs b/evm/tests/log_opcode.rs index fdb12dfb..f6fb2a1f 100644 --- a/evm/tests/log_opcode.rs +++ b/evm/tests/log_opcode.rs @@ -459,7 +459,7 @@ fn test_log_with_aggreg() -> anyhow::Result<()> { // Preprocess all circuits. let all_circuits = AllRecursiveCircuits::::new( &all_stark, - &[16..17, 11..13, 17..19, 14..15, 9..11, 12..13, 19..21], + &[16..17, 12..14, 17..18, 14..15, 9..11, 12..13, 19..20], &config, );