discovery: fix log line panic

If a method returns an error, we should assume all other parameters to
be nil unless the documentation explicitly says otherwise. So here, we
fix a log line where a dereference is made to an object that will be nil
due to an error being returned.
This commit is contained in:
Elle Mouton
2025-06-30 18:27:56 +02:00
parent e54206f8c2
commit 25daf253c0

View File

@@ -2236,7 +2236,7 @@ func (d *AuthenticatedGossiper) isMsgStale(_ context.Context,
}
if err != nil {
log.Debugf("Unable to retrieve channel=%v from graph: "+
"%v", chanInfo.ChannelID, err)
"%v", msg.ShortChannelID, err)
return false
}