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
committed by Oliver Gugger
parent d90781e36a
commit 4efcb075de

View File

@@ -2234,7 +2234,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
}