diff options
author | Péter Szilágyi <peterke@gmail.com> | 2019-07-10 01:30:24 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2019-07-10 01:34:42 +0800 |
commit | 213690cdfd8e49940b68210da05e3836005b96b8 (patch) | |
tree | 08225fc3870740c2b12a1802d9d6f55df10fee68 /cmd/geth/config.go | |
parent | 8c249cb82f713c5c5b5a8160c92da7fe145e799d (diff) | |
download | go-tangerine-213690cdfd8e49940b68210da05e3836005b96b8.tar go-tangerine-213690cdfd8e49940b68210da05e3836005b96b8.tar.gz go-tangerine-213690cdfd8e49940b68210da05e3836005b96b8.tar.bz2 go-tangerine-213690cdfd8e49940b68210da05e3836005b96b8.tar.lz go-tangerine-213690cdfd8e49940b68210da05e3836005b96b8.tar.xz go-tangerine-213690cdfd8e49940b68210da05e3836005b96b8.tar.zst go-tangerine-213690cdfd8e49940b68210da05e3836005b96b8.zip |
cmd, eth, les: fix up ultra light config integration
Diffstat (limited to 'cmd/geth/config.go')
-rw-r--r-- | cmd/geth/config.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cmd/geth/config.go b/cmd/geth/config.go index ef26f250e..0a63a0277 100644 --- a/cmd/geth/config.go +++ b/cmd/geth/config.go @@ -123,7 +123,6 @@ func makeConfigNode(ctx *cli.Context) (*node.Node, gethConfig) { } // Apply flags. - utils.SetULC(ctx, &cfg.Eth) utils.SetNodeConfig(ctx, &cfg.Node) stack, err := node.New(&cfg.Node) if err != nil { @@ -133,7 +132,6 @@ func makeConfigNode(ctx *cli.Context) (*node.Node, gethConfig) { if ctx.GlobalIsSet(utils.EthStatsURLFlag.Name) { cfg.Ethstats.URL = ctx.GlobalString(utils.EthStatsURLFlag.Name) } - utils.SetShhConfig(ctx, stack, &cfg.Shh) utils.SetDashboardConfig(ctx, &cfg.Dashboard) |