remove prover_inputs from Interpreter

This commit is contained in:
Nicholas Ward 2022-09-23 12:00:05 -07:00
parent fa01f83e65
commit 1f3ee6dae2

View File

@ -74,9 +74,6 @@ pub struct Interpreter<'a> {
pub(crate) memory: InterpreterMemory,
pub(crate) generation_state: GenerationState<F>,
prover_inputs_map: &'a HashMap<usize, ProverInputFn>,
/// Non-deterministic prover inputs, stored backwards so that popping the last item gives the
/// next prover input.
prover_inputs: Vec<U256>,
pub(crate) halt_offsets: Vec<usize>,
running: bool,
}