cmd/utils: bootstrap nodes in config file were not respected

Signed-off-by: Maximilian Meister <mmeister@suse.de>
This commit is contained in:
Maximilian Meister 2017-11-26 12:41:42 +01:00
parent e4c9fd29a3
commit 62dc530773
1 changed files with 2 additions and 0 deletions

View File

@ -584,6 +584,8 @@ func setBootstrapNodes(ctx *cli.Context, cfg *p2p.Config) {
urls = params.TestnetBootnodes
case ctx.GlobalBool(RinkebyFlag.Name):
urls = params.RinkebyBootnodes
case cfg.BootstrapNodes != nil:
return // already set, don't apply defaults.
}
cfg.BootstrapNodes = make([]*discover.Node, 0, len(urls))