From 533c1d13310dc707dd2125256417ccae4a1b7b3a Mon Sep 17 00:00:00 2001 From: Enrique Ortiz Date: Wed, 20 Apr 2022 10:13:47 -0400 Subject: [PATCH] core/vm: fix typo (#24714) Was just browsing the code and found this. --- 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 d93c3c199688..aae69e8e3b9e 100644 --- a/core/vm/interpreter.go +++ b/core/vm/interpreter.go @@ -158,7 +158,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() {