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 }