mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-01 09:03:48 +00:00
10 lines
159 B
Go
10 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)
|
|
}
|