diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-08-09 08:06:16 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-08-09 08:06:16 +0800 |
commit | eec38c5853526f0cf8df0ccbd8e13f0a6c76a04a (patch) | |
tree | 01c07f1044dd6b35b45fe7079bdb8ef328bac1b7 /cmd | |
parent | c93f0b9f4ba84933110435a80055cdaabd078159 (diff) | |
download | dexon-eec38c5853526f0cf8df0ccbd8e13f0a6c76a04a.tar.gz dexon-eec38c5853526f0cf8df0ccbd8e13f0a6c76a04a.tar.zst dexon-eec38c5853526f0cf8df0ccbd8e13f0a6c76a04a.zip |
cmd/geth, core/vm: setup vm settings and defaulted JIT disabled
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/geth/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 0e73822f3..895e55b44 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -336,6 +336,7 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso } app.Before = func(ctx *cli.Context) error { utils.SetupLogger(ctx) + utils.SetupVM(ctx) if ctx.GlobalBool(utils.PProfEanbledFlag.Name) { utils.StartPProf(ctx) } |