From 637cf34ded9b21c7268b9417dc55a3622752fc01 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 21e3c914e1..2b26c044af 100644 --- a/core/vm/interpreter.go +++ b/core/vm/interpreter.go @@ -155,7 +155,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() {