From a735e0bef7690119d1fc7bd7d0dccfbeeb2c960c Mon Sep 17 00:00:00 2001 From: Paradox <> Date: Thu, 7 Aug 2025 19:01:13 +0300 Subject: [PATCH] core/vm/evm.go fix typo in comments --- core/vm/evm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/evm.go b/core/vm/evm.go index 143b7e08a2..6d4f6ec684 100644 --- a/core/vm/evm.go +++ b/core/vm/evm.go @@ -186,7 +186,7 @@ func isSystemCall(caller common.Address) bool { } // Call executes the contract associated with the addr with the given input as -// parameters. It also handles any necessary value transfer required and takse +// parameters. It also handles any necessary value transfer required and takes // the necessary steps to create accounts and reverses the state in case of an // execution error or failed value transfer. func (evm *EVM) Call(caller common.Address, addr common.Address, input []byte, gas uint64, value *uint256.Int) (ret []byte, leftOverGas uint64, err error) {