github.com/jonasnick/go-ethereum@v0.7.12-0.20150216215225-22176f05d387/vm/virtual_machine.go (about) 1 package vm 2 3 import "math/big" 4 5 type VirtualMachine interface { 6 Env() Environment 7 Run(me, caller ContextRef, code []byte, value, gas, price *big.Int, data []byte) ([]byte, error) 8 Printf(string, ...interface{}) VirtualMachine 9 Endl() VirtualMachine 10 }