cmd/geth, core/vm: setup vm settings and defaulted JIT disabled

This commit is contained in:
Jeffrey Wilcke
2015-08-09 02:06:16 +02:00
parent c93f0b9f4b
commit eec38c5853
2 changed files with 4 additions and 3 deletions

View File

@ -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