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