mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 12:07: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)
|
|
}
|