mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-26 05:17:19 +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)
|
||
|
}
|