From 5aac3481a04a52887d5ee370fdfb645209e45b04 Mon Sep 17 00:00:00 2001 From: Egor Date: Mon, 26 Jan 2026 19:20:16 +0300 Subject: [PATCH] Update payment_verification_service.py --- app/services/payment_verification_service.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/services/payment_verification_service.py b/app/services/payment_verification_service.py index 0a833fee..b20f0a3f 100644 --- a/app/services/payment_verification_service.py +++ b/app/services/payment_verification_service.py @@ -79,11 +79,12 @@ SUPPORTED_AUTO_CHECK_METHODS: frozenset[PaymentMethod] = frozenset( PaymentMethod.YOOKASSA, PaymentMethod.MULENPAY, PaymentMethod.PAL24, - PaymentMethod.WATA, PaymentMethod.CRYPTOBOT, PaymentMethod.PLATEGA, # CloudPayments removed - API returns "Completed" during authorization # before final result, causing premature balance credits. Webhooks work correctly. + # WATA removed - API returns 429 "Use webhook – polling is rate-limited". + # Payments are processed via webhook (wata_webhook.py). PaymentMethod.FREEKASSA, } )