From 913979d8d48275fbc30d02abf75910754267e67e Mon Sep 17 00:00:00 2001 From: Pascal Fischer Date: Tue, 7 Oct 2025 19:15:11 +0200 Subject: [PATCH] pass temporary flag to prepare peer --- integrations/validator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/validator.go b/integrations/validator.go index 8acc231..3c93c6b 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) (map[string]struct{}, error) { +func (v *IntegratedValidatorImpl) GetValidatedPeers(_ context.Context, _ string, _ []*types.Group, peers []*nbpeer.Peer, _ *types.ExtraSettings, temporary bool) (map[string]struct{}, error) { validatedPeers := make(map[string]struct{}) for _, p := range peers { validatedPeers[p.ID] = struct{}{}