diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-03-20 01:07:09 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-03-24 06:02:44 +0800 |
commit | 0cfa21fc7f34d9da93abc41541dd4a98d70eb9dd (patch) | |
tree | aaeae000f0afdba0b78a53462150bd79a2e3c54b /cmd/utils | |
parent | 5f92606be2f7ddc53c9449770f5c96e5741e5c57 (diff) | |
download | go-tangerine-0cfa21fc7f34d9da93abc41541dd4a98d70eb9dd.tar.gz go-tangerine-0cfa21fc7f34d9da93abc41541dd4a98d70eb9dd.tar.zst go-tangerine-0cfa21fc7f34d9da93abc41541dd4a98d70eb9dd.zip |
core, eth, cmd: temporary work around for enabling the jit
This commit serves as a temporary workaround for enabling the jit until
the block customisation PR is merged in.
Diffstat (limited to 'cmd/utils')
-rw-r--r-- | cmd/utils/flags.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 3b05c2963..10aa48735 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -668,6 +668,8 @@ func MakeSystemNode(name, version string, extra []byte, ctx *cli.Context) *node. ExtraData: MakeMinerExtra(extra, ctx), NatSpec: ctx.GlobalBool(NatspecEnabledFlag.Name), DocRoot: ctx.GlobalString(DocRootFlag.Name), + EnableJit: ctx.GlobalBool(VMEnableJitFlag.Name), + ForceJit: ctx.GlobalBool(VMForceJitFlag.Name), GasPrice: common.String2Big(ctx.GlobalString(GasPriceFlag.Name)), GpoMinGasPrice: common.String2Big(ctx.GlobalString(GpoMinGasPriceFlag.Name)), GpoMaxGasPrice: common.String2Big(ctx.GlobalString(GpoMaxGasPriceFlag.Name)), |