diff --git a/evm/src/keccak/keccak_stark.rs b/evm/src/keccak/keccak_stark.rs index 1af02d7f..56388626 100644 --- a/evm/src/keccak/keccak_stark.rs +++ b/evm/src/keccak/keccak_stark.rs @@ -233,14 +233,21 @@ impl, const D: usize> Stark for KeccakStark( &ctl_vars, &mut consumer, ); - consumer.accumulators() + let accs = consumer.accumulators(); + for a in &accs { + if !a.is_zero() { + dbg!(i); + } + } + accs }) .collect::>();