diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 7ab4906218..9f09953c35 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -2021,10 +2021,12 @@ func SetEthConfig(ctx *cli.Context, stack *node.Node, cfg *ethconfig.Config) { if ctx.IsSet(EWASMInterpreterFlag.Name) { cfg.EWASMInterpreter = ctx.String(EWASMInterpreterFlag.Name) + vm.InitEVMCEwasm(cfg.EWASMInterpreter) } if ctx.IsSet(EVMInterpreterFlag.Name) { cfg.EVMInterpreter = ctx.String(EVMInterpreterFlag.Name) + vm.InitEVMCEVM(cfg.EVMInterpreter) } if ctx.IsSet(RPCGlobalGasCapFlag.Name) { cfg.RPCGasCap = ctx.Uint64(RPCGlobalGasCapFlag.Name)