1
0
Fork 0
forked from forks/go-ethereum
go-ethereum-modded-tocallarg/core/vm/virtual_machine.go
2015-03-23 16:59:09 +01:00

8 lines
187 B
Go

package vm
type VirtualMachine interface {
Env() Environment
Run(context *Context, data []byte) ([]byte, error)
Printf(string, ...interface{}) VirtualMachine
Endl() VirtualMachine
}