forked from cerc-io/plugeth
10 lines
189 B
Go
10 lines
189 B
Go
package ethvm
|
|
|
|
type VirtualMachine interface {
|
|
Env() Environment
|
|
RunClosure(*Closure) ([]byte, error)
|
|
Depth() int
|
|
Printf(string, ...interface{}) VirtualMachine
|
|
Endl() VirtualMachine
|
|
}
|