diff --git a/nimbus/config.nim b/nimbus/config.nim index 1a84cafc6..54d23ab39 100644 --- a/nimbus/config.nim +++ b/nimbus/config.nim @@ -297,7 +297,7 @@ proc processRpcArguments(key, value: string): ConfigStatus = let config = getConfiguration() let skey = key.toLowerAscii() if skey == "rpc": - config.rpc.flags.incl(Enabled) + config.rpc.flags.incl(RpcFlags.Enabled) elif skey == "rpcbind": config.rpc.binds.setLen(0) result = processAddressPortsList(value, config.rpc.binds)