Skip to content

Commit

Permalink
Fix fill_gaps (#1465)
Browse files Browse the repository at this point in the history
  • Loading branch information
LindaGuiga authored Jan 12, 2024
1 parent c2a73ad commit 7048305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evm/src/memory/memory_stark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ impl<F: RichField + Extendable<D>, const D: usize> MemoryStark<F, D> {
while next.address.virt > max_rc {
let mut dummy_address = next.address;
dummy_address.virt -= max_rc;
let dummy_read = MemoryOp::new_dummy_read(dummy_address, 0, next.value);
let dummy_read = MemoryOp::new_dummy_read(dummy_address, 0, U256::zero());
memory_ops.push(dummy_read);
next = dummy_read;
}
Expand Down

0 comments on commit 7048305

Please sign in to comment.