From bbaffef40d290a3b7fba2036ce445d945d37c126 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 13 Nov 2019 13:30:42 +0100 Subject: [PATCH] cmd/geth: gofmt --- cmd/geth/config.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cmd/geth/config.go b/cmd/geth/config.go index 25b038e6aa..3a90abbbb9 100644 --- a/cmd/geth/config.go +++ b/cmd/geth/config.go @@ -74,10 +74,10 @@ type ethstatsConfig struct { } type gethConfig struct { - Eth eth.Config - Shh whisper.Config - Node node.Config - Ethstats ethstatsConfig + Eth eth.Config + Shh whisper.Config + Node node.Config + Ethstats ethstatsConfig } func loadConfig(file string, cfg *gethConfig) error { @@ -108,9 +108,9 @@ func defaultNodeConfig() node.Config { func makeConfigNode(ctx *cli.Context) (*node.Node, gethConfig) { // Load defaults. cfg := gethConfig{ - Eth: eth.DefaultConfig, - Shh: whisper.DefaultConfig, - Node: defaultNodeConfig(), + Eth: eth.DefaultConfig, + Shh: whisper.DefaultConfig, + Node: defaultNodeConfig(), } // Load config file.