core/vm: remove unnecessary comment (#30887)

pull/30891/head
Zheyuan He 2 months ago committed by GitHub
parent 75f847390f
commit 4ecf08584c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      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) { func opMstore(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([]byte, error) {
// pop value of the stack
mStart, val := scope.Stack.pop(), scope.Stack.pop() mStart, val := scope.Stack.pop(), scope.Stack.pop()
scope.Memory.Set32(mStart.Uint64(), &val) scope.Memory.Set32(mStart.Uint64(), &val)
return nil, nil return nil, nil

Loading…
Cancel
Save