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, }