11 lines
159 B
Go
11 lines
159 B
Go
// +build !evmjit
|
|
|
|
package vm
|
|
|
|
import "fmt"
|
|
|
|
func NewJitVm(env Environment) VirtualMachine {
|
|
fmt.Printf("Warning! EVM JIT not enabled.\n")
|
|
return New(env)
|
|
}
|