fix(payments): enforce RUB as default service currency

This commit is contained in:
kavore
2026-02-09 00:19:59 +03:00
parent 5365df91f6
commit 7622537961
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ class SeverPayService:
http_session = await self._get_session()
url = f"{self.base_url}/payin/create"
currency_code = (currency or self.settings.DEFAULT_CURRENCY_SYMBOL or "RUB").upper()
currency_code = (currency or "RUB").upper()
amount_str = self._format_amount(amount)
body = {