From dcc83b9f79316ebf2a8677ac99976f435f80d011 Mon Sep 17 00:00:00 2001 From: hailin Date: Thu, 29 Jan 2026 08:56:24 -0800 Subject: [PATCH] =?UTF-8?q?fix(trading-service):=20=E4=BD=BF=E7=94=A8Docke?= =?UTF-8?q?r=E5=AE=B9=E5=99=A8=E5=90=8D=E8=B0=83=E7=94=A8auth-service?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 改为使用 auth-service:3024 替代 IP 地址 Co-Authored-By: Claude Opus 4.5 --- .../src/application/services/p2p-transfer.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/trading-service/src/application/services/p2p-transfer.service.ts b/backend/services/trading-service/src/application/services/p2p-transfer.service.ts index abc2a250..98fdbe59 100644 --- a/backend/services/trading-service/src/application/services/p2p-transfer.service.ts +++ b/backend/services/trading-service/src/application/services/p2p-transfer.service.ts @@ -42,7 +42,7 @@ export class P2pTransferService { private readonly prisma: PrismaService, private readonly configService: ConfigService, ) { - this.authServiceUrl = this.configService.get('AUTH_SERVICE_URL', 'http://192.168.1.111:3024'); + this.authServiceUrl = this.configService.get('AUTH_SERVICE_URL', 'http://auth-service:3024'); this.minTransferAmount = this.configService.get('MIN_P2P_TRANSFER_AMOUNT', 0.01); }