mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-09 14:15:53 +00:00
9 lines
187 B
Go
9 lines
187 B
Go
package vm
|
|
|
|
type VirtualMachine interface {
|
|
Env() Environment
|
|
Run(context *Context, data []byte) ([]byte, error)
|
|
Printf(string, ...interface{}) VirtualMachine
|
|
Endl() VirtualMachine
|
|
}
|