From eff7cc0f58ea3e4d77c5eb1991a073bc0a70236c Mon Sep 17 00:00:00 2001 From: Robin Salen <30937548+Nashtare@users.noreply.github.com> Date: Thu, 25 Jan 2024 00:45:28 -0500 Subject: [PATCH] Fix circuit sizes (#1484) --- 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 8d56c6bd..37d874cd 100644 --- a/evm/tests/log_opcode.rs +++ b/evm/tests/log_opcode.rs @@ -442,7 +442,7 @@ fn test_log_with_aggreg() -> anyhow::Result<()> { // Preprocess all circuits. let all_circuits = AllRecursiveCircuits::::new( &all_stark, - &[16..17, 13..16, 15..18, 14..15, 10..11, 12..13, 17..20], + &[16..17, 12..15, 14..18, 14..15, 9..10, 12..13, 17..20], &config, );