From c58e1ff887810e2818d720170145a7590cca7a8e Mon Sep 17 00:00:00 2001 From: sprites0 <199826320+sprites0@users.noreply.github.com> Date: Thu, 10 Jul 2025 19:41:26 +0000 Subject: [PATCH] doc: Rephrase comment --- src/node/evm/mod.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/node/evm/mod.rs b/src/node/evm/mod.rs index 931b43cf8..3ec468a52 100644 --- a/src/node/evm/mod.rs +++ b/src/node/evm/mod.rs @@ -110,8 +110,10 @@ where _contract: Address, _data: Bytes, ) -> Result, Self::Error> { - // NOTE: (HACK) Per hyper-evm-sync, HyperEVM doesn't seem to call this method, so we just return a success result with no changes - // This is used for block traces. In a long term, consider implementing SystemCaller. + // NOTE: This is used for block traces. + // Per hyper-evm-sync, HyperEVM doesn't seem to call this method, so + // - we just return a success result with no changes, which gives the same semantics as HyperEVM. + // - In a long term (ideally), consider implementing SystemCaller. Ok(ResultAndState::new( ExecutionResult::Success { reason: SuccessReason::Stop,