cmd: prevent accidental invalid commands (#17248)
* cmd: stop parsing bootnodes if one is invalid * cmd/geth: require valid command as argument (or no arg)
This commit is contained in:
committed by
Péter Szilágyi
parent
feed8069a6
commit
021d6fbbbb
@ -644,8 +644,7 @@ func setBootstrapNodes(ctx *cli.Context, cfg *p2p.Config) {
|
||||
for _, url := range urls {
|
||||
node, err := discover.ParseNode(url)
|
||||
if err != nil {
|
||||
log.Error("Bootstrap URL invalid", "enode", url, "err", err)
|
||||
continue
|
||||
log.Crit("Bootstrap URL invalid", "enode", url, "err", err)
|
||||
}
|
||||
cfg.BootstrapNodes = append(cfg.BootstrapNodes, node)
|
||||
}
|
||||
|
Reference in New Issue
Block a user