cmd/utils: add regular v5 bootnodes too in rinkeby light mode

This commit is contained in:
Zsolt Felfoldi 2018-02-10 01:36:17 +01:00
parent 42628ba7ed
commit 4cd88af033

View file

@ -626,7 +626,7 @@ func setBootstrapNodesV5(ctx *cli.Context, cfg *p2p.Config) {
urls = strings.Split(ctx.GlobalString(BootnodesFlag.Name), ",")
}
case ctx.GlobalBool(RinkebyFlag.Name):
urls = params.RinkebyBootnodes
urls = append(urls, params.RinkebyBootnodes...)
case cfg.BootstrapNodesV5 != nil:
return // already set, don't apply defaults.
}