plugeth/core/vm/vm_jit_fake.go
2015-03-23 16:59:09 +01:00

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)
}