mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-28 08:37:22 +00:00
Standard VM should be about 10x faster than the debug VM. Some error checking has been removed, all of the log statements and therefor quite some unnecessary if-statements.
7 lines
119 B
Go
7 lines
119 B
Go
package ethvm
|
|
|
|
type VirtualMachine interface {
|
|
Env() Environment
|
|
RunClosure(*Closure) ([]byte, error)
|
|
Depth() int
|
|
}
|