mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
eth: don't warn if no BootNodes are specified
This commit is contained in:
parent
9915d3c3be
commit
f1ebad2508
1 changed files with 3 additions and 0 deletions
|
|
@ -46,6 +46,9 @@ type Config struct {
|
|||
func (cfg *Config) parseBootNodes() []*discover.Node {
|
||||
var ns []*discover.Node
|
||||
for _, url := range strings.Split(cfg.BootNodes, " ") {
|
||||
if url == "" {
|
||||
continue
|
||||
}
|
||||
n, err := discover.ParseNode(url)
|
||||
if err != nil {
|
||||
logger.Errorf("Bootstrap URL %s: %v\n", url, err)
|
||||
|
|
|
|||
Loading…
Reference in a new issue