peer: don't d/c on invalid node alias

This commit is contained in:
Olaoluwa Osuntokun 2019-01-03 21:11:41 -08:00
parent 1821773e39
commit a49e39de75
No known key found for this signature in database
GPG Key ID: CE58F7F8E20FD9A2

View File

@ -996,6 +996,13 @@ out:
idleTimer.Reset(idleTimeout)
continue
// If the NodeAnnouncement has an invalid alias, then
// we'll log that error above and continue so we can
// continue to read messges from the peer.
case *lnwire.ErrInvalidNodeAlias:
idleTimer.Reset(idleTimeout)
continue
// If the error we encountered wasn't just a message we
// didn't recognize, then we'll stop all processing s
// this is a fatal error.