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