mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-27 16:17:22 +00:00
* Cleaned up VM execution. VM run now takes a context * ADDMOD/MULMOD - removed incorrect cast
8 lines
187 B
Go
8 lines
187 B
Go
package vm
|
|
|
|
type VirtualMachine interface {
|
|
Env() Environment
|
|
Run(context *Context, data []byte) ([]byte, error)
|
|
Printf(string, ...interface{}) VirtualMachine
|
|
Endl() VirtualMachine
|
|
}
|