eth: don't warn if no BootNodes are specified

pull/292/head
Felix Lange 10 years ago
parent 9915d3c3be
commit f1ebad2508
  1. 3
      eth/backend.go

@ -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…
Cancel
Save