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 }