From eec38c5853526f0cf8df0ccbd8e13f0a6c76a04a Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Sun, 9 Aug 2015 02:06:16 +0200 Subject: cmd/geth, core/vm: setup vm settings and defaulted JIT disabled --- core/vm/settings.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core') diff --git a/core/vm/settings.go b/core/vm/settings.go index b94efd9ab..0cd931b6a 100644 --- a/core/vm/settings.go +++ b/core/vm/settings.go @@ -17,9 +17,9 @@ package vm var ( - DisableJit bool // Disable the JIT VM - ForceJit bool // Force the JIT, skip byte VM - MaxProgSize int // Max cache size for JIT Programs + DisableJit bool = true // Disable the JIT VM + ForceJit bool // Force the JIT, skip byte VM + MaxProgSize int // Max cache size for JIT Programs ) const defaultJitMaxCache int = 64 -- cgit v1.2.3