From 229c540f89b2e325a48f6523b99f10d483f88d4a Mon Sep 17 00:00:00 2001 From: Elias Tazartes <66871571+Eikix@users.noreply.github.com> Date: Tue, 26 Sep 2023 17:07:35 +0700 Subject: [PATCH] Update crates/evm/src/memory.cairo Co-authored-by: Mathieu <60658558+enitrat@users.noreply.github.com> --- crates/evm/src/memory.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/evm/src/memory.cairo b/crates/evm/src/memory.cairo index 29a6d6a87..14238bad4 100644 --- a/crates/evm/src/memory.cairo +++ b/crates/evm/src/memory.cairo @@ -76,7 +76,7 @@ impl MemoryImpl of MemoryTrait { self.bytes_len.insert(self.active_segment(), cmp::max(new_min_bytes_len, self.size())); - // Compute actual offset in Memory, given active_segment of Memory (current Execution Context id) + // Compute actual offset in the dict, given active_segment of Memory (current Execution Context id) // And Memory Segment Size let offset = self.compute_active_segment_offset(offset);