1
0
Fork 0
forked from forks/go-ethereum

core/vm: remove unnecessary comment (#30887)

This commit is contained in:
Zheyuan He 2024-12-10 20:10:17 +08:00 committed by GitHub
parent 75f847390f
commit 4ecf08584c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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