graph/db: thread context to AddLightningNode

This commit is contained in:
Elle Mouton
2025-06-17 11:34:58 +02:00
parent c1740c14ba
commit d1cfb47428
15 changed files with 126 additions and 81 deletions

View File

@@ -2022,7 +2022,7 @@ func (d *AuthenticatedGossiper) fetchPKScript(chanID *lnwire.ShortChannelID) (
// addNode processes the given node announcement, and adds it to our channel
// graph.
func (d *AuthenticatedGossiper) addNode(_ context.Context,
func (d *AuthenticatedGossiper) addNode(ctx context.Context,
msg *lnwire.NodeAnnouncement, op ...batch.SchedulerOption) error {
if err := netann.ValidateNodeAnn(msg); err != nil {
@@ -2030,7 +2030,9 @@ func (d *AuthenticatedGossiper) addNode(_ context.Context,
err)
}
return d.cfg.Graph.AddNode(models.NodeFromWireAnnouncement(msg), op...)
return d.cfg.Graph.AddNode(
ctx, models.NodeFromWireAnnouncement(msg), op...,
)
}
// isPremature decides whether a given network message has a block height+delta