mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-25 04:47:17 +00:00
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)
|
||
|
}
|