diff --git a/evm/src/cpu/kernel/interpreter.rs b/evm/src/cpu/kernel/interpreter.rs index c4eea076..10561896 100644 --- a/evm/src/cpu/kernel/interpreter.rs +++ b/evm/src/cpu/kernel/interpreter.rs @@ -74,9 +74,6 @@ pub struct Interpreter<'a> { pub(crate) memory: InterpreterMemory, pub(crate) generation_state: GenerationState, prover_inputs_map: &'a HashMap, - /// Non-deterministic prover inputs, stored backwards so that popping the last item gives the - /// next prover input. - prover_inputs: Vec, pub(crate) halt_offsets: Vec, running: bool, }