quorum/ethvm/virtual_machine.go

8 lines
119 B
Go

package ethvm
type VirtualMachine interface {
Env() Environment
RunClosure(*Closure) ([]byte, error)
Depth() int
}