fix(mpc-service): use correct env var name MPC_ACCOUNT_SERVICE_URL

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 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-07 01:48:02 -08:00
parent 3332124250
commit 2ae174692e
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ export class MPCCoordinatorService {
private readonly httpService: HttpService,
private readonly prisma: PrismaService,
) {
this.mpcSystemUrl = this.configService.get<string>('MPC_SYSTEM_URL', 'http://localhost:4000');
this.mpcSystemUrl = this.configService.get<string>('MPC_ACCOUNT_SERVICE_URL', 'http://localhost:4000');
this.mpcApiKey = this.configService.get<string>('MPC_API_KEY', 'test-api-key');
}