From 4ecf08584c413dd759c3241703f69c95bda6f84f Mon Sep 17 00:00:00 2001 From: Zheyuan He Date: Tue, 10 Dec 2024 20:10:17 +0800 Subject: [PATCH] core/vm: remove unnecessary comment (#30887) --- core/vm/instructions.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/vm/instructions.go b/core/vm/instructions.go index 47eb62be08..9b9a31a855 100644 --- a/core/vm/instructions.go +++ b/core/vm/instructions.go @@ -501,7 +501,6 @@ func opMload(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([]by } func opMstore(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([]byte, error) { - // pop value of the stack mStart, val := scope.Stack.pop(), scope.Stack.pop() scope.Memory.Set32(mStart.Uint64(), &val) return nil, nil