mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-13 08:04:53 +00:00
38c61f6f25
This also reduces the time required spend in the VM
7 lines
117 B
Go
7 lines
117 B
Go
package vm
|
|
|
|
type VirtualMachine interface {
|
|
Env() Environment
|
|
Run(context *Context, data []byte) ([]byte, error)
|
|
}
|