From 20e13da8c376e2a99282c5805348edd043b11be0 Mon Sep 17 00:00:00 2001 From: bhavanakarwade <137506897+bhavanakarwade@users.noreply.github.com> Date: Fri, 23 Aug 2024 15:41:49 +0530 Subject: [PATCH] fix: fetch schema details (#932) Signed-off-by: bhavanakarwade Signed-off-by: KulkarniShashank --- apps/ecosystem/src/ecosystem.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ecosystem/src/ecosystem.service.ts b/apps/ecosystem/src/ecosystem.service.ts index b0a14e51a..7e23d014b 100644 --- a/apps/ecosystem/src/ecosystem.service.ts +++ b/apps/ecosystem/src/ecosystem.service.ts @@ -1663,7 +1663,7 @@ export class EcosystemService { throw new BadRequestException(ResponseMessages.ecosystem.error.transactionNotSigned); } - const ecosystemMemberDetails = await this.ecosystemRepository.getAgentDetails(orgId); + const ecosystemMemberDetails = await this.getEcosystemMemberDetails(endorsementTransactionPayload); const ecosystemLeadAgentDetails = await this.getEcosystemLeadAgentDetails(ecosystemId); const agentEndPoint = ecosystemLeadAgentEndPoint ? ecosystemLeadAgentEndPoint