8 lines
119 B
Go
8 lines
119 B
Go
|
package ethvm
|
||
|
|
||
|
type VirtualMachine interface {
|
||
|
Env() Environment
|
||
|
RunClosure(*Closure) ([]byte, error)
|
||
|
Depth() int
|
||
|
}
|