diff --git a/app/services/payment_verification_service.py b/app/services/payment_verification_service.py index af36028e..5bc04f44 100644 --- a/app/services/payment_verification_service.py +++ b/app/services/payment_verification_service.py @@ -80,7 +80,8 @@ SUPPORTED_AUTO_CHECK_METHODS: frozenset[PaymentMethod] = frozenset( PaymentMethod.WATA, PaymentMethod.CRYPTOBOT, PaymentMethod.PLATEGA, - PaymentMethod.CLOUDPAYMENTS, + # CloudPayments removed - API returns "Completed" during authorization + # before final result, causing premature balance credits. Webhooks work correctly. PaymentMethod.FREEKASSA, } )