From ca7e7ea4bcbaea6c0a722efa7ef2b2c176b9b759 Mon Sep 17 00:00:00 2001 From: IshaVenikar Date: Mon, 5 Aug 2024 10:52:07 +0530 Subject: [PATCH] Fix lint error --- gql/resolver.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gql/resolver.go b/gql/resolver.go index 76f3571f3..6b036bfaf 100644 --- a/gql/resolver.go +++ b/gql/resolver.go @@ -413,7 +413,8 @@ func (q queryResolver) GetParticipantByAddress(ctx context.Context, address stri func (q queryResolver) GetParticipantByNitroAddress(ctx context.Context, nitroAddress string) (*Participant, error) { onboardingQueryClient := onboardingTypes.NewQueryClient(q.ctx) - participantResp, err := onboardingQueryClient.GetParticipantByNitroAddress(ctx, &onboardingTypes.QueryGetParticipantByNitroAddressRequest{NitroAddress: nitroAddress}) + participantResp, err := onboardingQueryClient.GetParticipantByNitroAddress( + ctx, &onboardingTypes.QueryGetParticipantByNitroAddressRequest{NitroAddress: nitroAddress}) if err != nil { return nil, err }