mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
9 lines
186 B
Go
9 lines
186 B
Go
package vm
|
|
|
|
type VirtualMachine interface {
|
|
Env() Environment
|
|
RunClosure(*Closure) ([]byte, error)
|
|
Depth() int
|
|
Printf(string, ...interface{}) VirtualMachine
|
|
Endl() VirtualMachine
|
|
}
|