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:
parent
3332124250
commit
2ae174692e
|
|
@ -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');
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue