From 6182108d6c76c80e70c397b7cc45c16930fcc59a Mon Sep 17 00:00:00 2001 From: aitbc Date: Tue, 28 Apr 2026 21:21:31 +0200 Subject: [PATCH] Fix payment service: update exchange API URL from port 23000 to 8001 --- apps/coordinator-api/src/app/services/payments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/coordinator-api/src/app/services/payments.py b/apps/coordinator-api/src/app/services/payments.py index 092c8215..f2342793 100755 --- a/apps/coordinator-api/src/app/services/payments.py +++ b/apps/coordinator-api/src/app/services/payments.py @@ -23,7 +23,7 @@ class PaymentService: def __init__(self, session: Annotated[Session, Depends(get_session)]): self.session = session self.wallet_base_url = "http://127.0.0.1:20000" # Wallet daemon URL - self.exchange_base_url = "http://127.0.0.1:23000" # Exchange API URL + self.exchange_base_url = "http://127.0.0.1:8001" # Exchange API URL async def create_payment(self, job_id: str, payment_data: JobPaymentCreate) -> JobPayment: """Create a new payment for a job with ACID compliance"""