From 2ae174692e5da136343b7c76c7e160f686eb8b63 Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 7 Dec 2025 01:48:02 -0800 Subject: [PATCH] fix(mpc-service): use correct env var name MPC_ACCOUNT_SERVICE_URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed from MPC_SYSTEM_URL to MPC_ACCOUNT_SERVICE_URL to match docker-compose config. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../src/application/services/mpc-coordinator.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/mpc-service/src/application/services/mpc-coordinator.service.ts b/backend/services/mpc-service/src/application/services/mpc-coordinator.service.ts index 9cf714b3..c4734811 100644 --- a/backend/services/mpc-service/src/application/services/mpc-coordinator.service.ts +++ b/backend/services/mpc-service/src/application/services/mpc-coordinator.service.ts @@ -123,7 +123,7 @@ export class MPCCoordinatorService { private readonly httpService: HttpService, private readonly prisma: PrismaService, ) { - this.mpcSystemUrl = this.configService.get('MPC_SYSTEM_URL', 'http://localhost:4000'); + this.mpcSystemUrl = this.configService.get('MPC_ACCOUNT_SERVICE_URL', 'http://localhost:4000'); this.mpcApiKey = this.configService.get('MPC_API_KEY', 'test-api-key'); }