From 1f3ee6dae2727ff49e9ae6d2b2dff6d0a1c7cf3d Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Fri, 23 Sep 2022 12:00:05 -0700 Subject: [PATCH] remove prover_inputs from Interpreter --- evm/src/cpu/kernel/interpreter.rs | 3 --- 1 file changed, 3 deletions(-) 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, }