quorum/vm/virtual_machine.go

11 lines
252 B
Go
Raw Normal View History

2014-10-18 04:31:20 -07:00
package vm
import "math/big"
type VirtualMachine interface {
Env() Environment
Run(me, caller ClosureRef, code []byte, value, gas, price *big.Int, data []byte) ([]byte, error)
2014-10-14 04:37:26 -07:00
Printf(string, ...interface{}) VirtualMachine
Endl() VirtualMachine
}