diff --git a/evm_arithmetization/src/cpu/kernel/asm/main.asm b/evm_arithmetization/src/cpu/kernel/asm/main.asm index 10f9778cf..19e5a9d96 100644 --- a/evm_arithmetization/src/cpu/kernel/asm/main.asm +++ b/evm_arithmetization/src/cpu/kernel/asm/main.asm @@ -170,7 +170,7 @@ global perform_final_checks: %mload_global_metadata(@GLOBAL_METADATA_TXN_NUMBER_AFTER) %assert_eq %pop3 - // We add a dummy value as an initial trie data length, + // We set a dummy value as an initial trie data length, // since the final transaction and receipt tries have already been // added to `GLOBAL_METADATA_TRIE_DATA_SIZE`. PUSH 1 @@ -206,7 +206,7 @@ global check_state_trie: %mload_global_metadata(@GLOBAL_METADATA_TRIE_DATA_SIZE) %assert_eq - // We add a dummy value as an initial trie data length, + // We set a dummy value as an initial trie data length, // as we do not need to compute the actual trie data length here. PUSH 1 global check_final_state_trie: diff --git a/evm_arithmetization/src/generation/mpt.rs b/evm_arithmetization/src/generation/mpt.rs index 1e8682652..dafdff181 100644 --- a/evm_arithmetization/src/generation/mpt.rs +++ b/evm_arithmetization/src/generation/mpt.rs @@ -306,7 +306,7 @@ fn load_state_trie( let storage_ptr_ptr = trie_data.len(); trie_data.push(Some((trie_data.len() + 2).into())); trie_data.push(Some(code_hash.into_uint())); - // WE don't need to store the slot values, as they will be overwritten in + // We don't need to store the slot values, as they will be overwritten in // `mpt_set_payload`. let storage_ptr = load_mpt(storage_trie, trie_data, &parse_storage_value_no_return)?; if storage_ptr == 0 {