discovery: pass context to ProcessRemoteAnnouncement

With this, we move a context.TODO() out of the gossiper and into the
brontide package - this will be removed in a future PR which focuses on
threading contexts through that code.
This commit is contained in:
Elle Mouton
2025-04-07 11:13:01 +02:00
parent 69e9ce9b24
commit f4b7cc4f4b
4 changed files with 431 additions and 353 deletions

View File

@@ -454,7 +454,7 @@ func TestGossipSyncerApplyNoHistoricalGossipFilter(t *testing.T) {
}()
// We'll now attempt to apply the gossip filter for the remote peer.
syncer.ApplyGossipFilter(ctx, remoteHorizon)
require.NoError(t, syncer.ApplyGossipFilter(ctx, remoteHorizon))
// Ensure that the syncer's remote horizon was properly updated.
if !reflect.DeepEqual(syncer.remoteUpdateHorizon, remoteHorizon) {