From 0afd1ece04a6a417304e8b3a2c9b632b7ada84c9 Mon Sep 17 00:00:00 2001 From: behruz-dev Date: Thu, 11 Sep 2025 17:11:20 +0500 Subject: [PATCH] fix --- core/services/payment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/services/payment.py b/core/services/payment.py index 20a031a..b328d9e 100644 --- a/core/services/payment.py +++ b/core/services/payment.py @@ -34,7 +34,7 @@ class Atmos: 'Authorization': f'Bearer {access_token}', } data = { - 'amount': int(amount) * 100, + 'amount': int(amount), 'account': str(account), 'store_id': f'{self.store_id}' }