From 42d65839e722abfad1c45501e3a2b042c7a780a4 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Mon, 20 Mar 2023 15:07:02 -0700 Subject: [PATCH] addressed comments --- evm/src/generation/state.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evm/src/generation/state.rs b/evm/src/generation/state.rs index 1f25cccd..2adc778e 100644 --- a/evm/src/generation/state.rs +++ b/evm/src/generation/state.rs @@ -40,8 +40,8 @@ pub(crate) struct GenerationState { /// addresses. pub(crate) state_key_to_address: HashMap, - /// Prover inputs containing the result of a MODMUL-related operation, in reverse order so that the next - /// input can be obtained via `pop()`. + /// Prover inputs containing the result of a MODMUL-related operation, in little-endian order (so that + /// inputs are obtained in big-endian order via `pop()`). pub(crate) bignum_modmul_prover_inputs: Vec, }