From 416c7529ce8f33de95d9f892fc04d37e6245fe80 Mon Sep 17 00:00:00 2001 From: Pascal Fischer <32096965+pascal-fischer@users.noreply.github.com> Date: Tue, 7 Oct 2025 19:17:56 +0200 Subject: [PATCH] Update integrations/validator.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- integrations/validator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/validator.go b/integrations/validator.go index 3c93c6b..88d8925 100644 --- a/integrations/validator.go +++ b/integrations/validator.go @@ -34,7 +34,7 @@ func (v *IntegratedValidatorImpl) IsNotValidPeer(_ context.Context, _ string, _ return false, false, nil } -func (v *IntegratedValidatorImpl) GetValidatedPeers(_ context.Context, _ string, _ []*types.Group, peers []*nbpeer.Peer, _ *types.ExtraSettings, temporary bool) (map[string]struct{}, error) { +func (v *IntegratedValidatorImpl) GetValidatedPeers(_ context.Context, _ string, _ []*types.Group, peers []*nbpeer.Peer, _ *types.ExtraSettings, _ bool) (map[string]struct{}, error) { validatedPeers := make(map[string]struct{}) for _, p := range peers { validatedPeers[p.ID] = struct{}{}