Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zkevm-circuits/src/evm_circuit/execution/memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl<F: Field> ExecutionGadget<F> for MemoryGadget<F> {
let is_mstore8 = IsEqualGadget::construct(cb, opcode.expr(), OpcodeId::MSTORE8.expr());
// This is an MSTORE/MSTORE8
let is_store = not::expr(is_mload.expr());
// This in an MSTORE/MLOAD
// This is an MSTORE/MLOAD
let is_not_mstore8 = not::expr(is_mstore8.expr());

// Calculate the next memory size and the gas cost for this memory
Expand Down