Commit 0f83dda8 authored by Michael de Hoog's avatar Michael de Hoog

One more replacement: filtering error message

parent 08fcc64b
...@@ -216,7 +216,7 @@ func FilterEnodes(log log.Logger, cfg *rollup.Config) func(node *enode.Node) boo ...@@ -216,7 +216,7 @@ func FilterEnodes(log log.Logger, cfg *rollup.Config) func(node *enode.Node) boo
err := node.Load(&dat) err := node.Load(&dat)
// if the entry does not exist, or if it is invalid, then ignore the node // if the entry does not exist, or if it is invalid, then ignore the node
if err != nil { if err != nil {
log.Debug("discovered node record has no optimism info", "node", node.ID(), "err", err) log.Debug("discovered node record has no chain info", "node", node.ID(), "err", err)
return false return false
} }
// check chain ID matches // check chain ID matches
......
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