Skip to content

Commit 4ecf085

Browse files
authored
core/vm: remove unnecessary comment (#30887)
1 parent 75f8473 commit 4ecf085

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

core/vm/instructions.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,6 @@ func opMload(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([]by
501501
}
502502

503503
func opMstore(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([]byte, error) {
504-
// pop value of the stack
505504
mStart, val := scope.Stack.pop(), scope.Stack.pop()
506505
scope.Memory.Set32(mStart.Uint64(), &val)
507506
return nil, nil

0 commit comments

Comments
 (0)