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
@@ -362,7 +362,7 @@ class CryptoPayService:
await notification_service.notify_payment_received(
user_id=user_id,
amount=float(invoice.amount),
currency=invoice.asset or settings.DEFAULT_CURRENCY_SYMBOL,
currency=invoice.asset or "RUB",
months=int(months) if sale_mode != "traffic" else 0,
traffic_gb=traffic_gb if sale_mode == "traffic" else None,
payment_provider="crypto_pay",