mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-11 05:00:05 +00:00
c5bd32b0ad
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.
8 lines
119 B
Go
8 lines
119 B
Go
package ethvm
|
|
|
|
type VirtualMachine interface {
|
|
Env() Environment
|
|
RunClosure(*Closure) ([]byte, error)
|
|
Depth() int
|
|
}
|