From dcaeecd246ea5c452dc3959d1a78b4dad144d586 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 13 Nov 2019 23:09:09 +0100 Subject: [PATCH] cmd/geth: fixup --- cmd/geth/config.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cmd/geth/config.go b/cmd/geth/config.go index 3a90abbbb9..3fe8bd7668 100644 --- a/cmd/geth/config.go +++ b/cmd/geth/config.go @@ -175,12 +175,6 @@ func makeFullNode(ctx *cli.Context) *node.Node { if cfg.Ethstats.URL != "" { utils.RegisterEthStatsService(stack, cfg.Ethstats.URL) } - - // Add dashboard daemon if requested. This should be the last registered service - // in order to be able to collect information about the other services. - if ctx.GlobalBool(utils.DashboardEnabledFlag.Name) { - utils.RegisterDashboardService(stack, &cfg.Dashboard, gitCommit) - } return stack }