aboutsummaryrefslogtreecommitdiffstats
path: root/ethvm/virtual_machine.go
blob: 6dd837049fc648d3d1c658bccce87710ab8e24e2 (plain) (blame)
1
2
3
4
5
6
7
package ethvm

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