graph/db: thread context through to HasLightningNode

This commit is contained in:
Elle Mouton
2025-06-17 11:49:23 +02:00
parent 66c5a97202
commit dc6259fcc3
12 changed files with 31 additions and 28 deletions

View File

@@ -2443,7 +2443,7 @@ func (d *AuthenticatedGossiper) handleNodeAnnouncement(ctx context.Context,
// We'll quickly ask the router if it already has a newer update for
// this node so we can skip validating signatures if not required.
if d.cfg.Graph.IsStaleNode(nodeAnn.NodeID, timestamp) {
if d.cfg.Graph.IsStaleNode(ctx, nodeAnn.NodeID, timestamp) {
log.Debugf("Skipped processing stale node: %x", nodeAnn.NodeID)
nMsg.err <- nil
return nil, true