mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-09 14:15:53 +00:00
11 lines
252 B
Go
11 lines
252 B
Go
package vm
|
|
|
|
import "math/big"
|
|
|
|
type VirtualMachine interface {
|
|
Env() Environment
|
|
Run(me, caller ContextRef, code []byte, value, gas, price *big.Int, data []byte) ([]byte, error)
|
|
Printf(string, ...interface{}) VirtualMachine
|
|
Endl() VirtualMachine
|
|
}
|