forked from forks/go-ethereum
core/vm: remove unnecessary comment (#30887)
This commit is contained in:
parent
75f847390f
commit
4ecf08584c
1 changed files with 0 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue