From 5cc6ae785e9eab170e10b854be06e3110fe047b4 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Wed, 9 Jul 2025 16:09:00 +0300 Subject: [PATCH 1/2] Update memory.rs --- interpreter/src/machine/memory.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interpreter/src/machine/memory.rs b/interpreter/src/machine/memory.rs index 0d796ab90..278fe7215 100644 --- a/interpreter/src/machine/memory.rs +++ b/interpreter/src/machine/memory.rs @@ -9,7 +9,7 @@ use primitive_types::U256; use crate::error::{ExitException, ExitFatal}; -/// A sequencial memory. It uses Rust's `Vec` for internal +/// A sequential memory. It uses Rust's `Vec` for internal /// representation. #[derive(Clone, Debug)] pub struct Memory { From 6944402dc37acfc71d50c99dccf88c46d84d51c5 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Wed, 9 Jul 2025 16:09:25 +0300 Subject: [PATCH 2/2] Update README.md --- fuzz/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/README.md b/fuzz/README.md index 70082b765..6242f9f6d 100644 --- a/fuzz/README.md +++ b/fuzz/README.md @@ -9,7 +9,7 @@ The harness has four invariants: 1. The user MUST spend funds to execute bytecode. 2. The user MUST not go above the gas_limit. 3. There should be NO funds minted. -4. The execution time MUST be within a reasonable thresold. +4. The execution time MUST be within a reasonable threshold. ## Analysis Additionally, the harness is instrumented with memory profiling to spot anomoalies.