blob: 23ac4878f69c1b9b4a1954e7d31354456b8599ec (
plain) (
tree)
|
|
package vm
import "math/big"
type VirtualMachine interface {
Env() Environment
Run(me, caller ContextRef, code []byte, value, gas, price *big.Int, data []byte) ([]byte, error)
Printf(string, ...interface{}) VirtualMachine
Endl() VirtualMachine
}
|