mirror of
https://github.com/status-im/op-geth.git
synced 2025-02-06 11:53:23 +00:00
8 lines
119 B
Go
8 lines
119 B
Go
|
package ethvm
|
||
|
|
||
|
type VirtualMachine interface {
|
||
|
Env() Environment
|
||
|
RunClosure(*Closure) ([]byte, error)
|
||
|
Depth() int
|
||
|
}
|