Commit 9b509f64 authored by obscuren's avatar obscuren

Print error instead of returning for seed node err

Returning an error would indicate a complete failure initialising the
Ethereum backend. Instead we should print the message and continue.
parent 89c69a1d
......@@ -245,7 +245,7 @@ func (s *Ethereum) Start(seed bool) error {
if seed {
logger.Infof("Connect to seed node %v", seedNodeAddress)
if err := s.SuggestPeer(seedNodeAddress); err != nil {
return err
logger.Infoln(err)
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment