From 7f79fc28d5d5a38ff9c0ccab0f75de6e4c05621b Mon Sep 17 00:00:00 2001 From: Daniel Liu Date: Tue, 24 Sep 2024 15:45:09 +0800 Subject: [PATCH] core/vm: fix typo (#24714) --- core/vm/interpreter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/interpreter.go b/core/vm/interpreter.go index ae7f1b377f169..1e48dbd0979a5 100644 --- a/core/vm/interpreter.go +++ b/core/vm/interpreter.go @@ -186,7 +186,7 @@ func (in *EVMInterpreter) Run(contract *Contract, input []byte, readOnly bool) ( logged bool // deferred EVMLogger should ignore already logged steps res []byte // result of the opcode execution function ) - // Don't move this deferrred function, it's placed before the capturestate-deferred method, + // Don't move this deferred function, it's placed before the capturestate-deferred method, // so that it get's executed _after_: the capturestate needs the stacks before // they are returned to the pools defer func() {