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