From a566d82a32120c9925e719556249f0f50cf3af13 Mon Sep 17 00:00:00 2001 From: Freddy Caceres Date: Tue, 7 May 2024 13:00:25 -0400 Subject: [PATCH] fix comment --- core/vm/evm.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/core/vm/evm.go b/core/vm/evm.go index 645bd54a5f3b..35c33d511ff1 100644 --- a/core/vm/evm.go +++ b/core/vm/evm.go @@ -97,12 +97,9 @@ type EVM struct { // activePrecompiles defines the precompiles that are currently active activePrecompiles []common.Address - // // preExecuteCallback is a callback function that is called before executing - // // CALL, CALLCODE, DELEGATECALL and STATICCALL opcodes. - // preExecuteCallback preExecuteCallbackType - - // hooks is a set of hooks that can be used to intercept and modify the + // hooks is a set of functions that can be used to intercept and modify the // behavior of the EVM when executing certain opcodes. + // The hooks are called before the execution of the respective opcodes. hooks OpCodeHooks }