From 02bcae05a3b40ce3fcef422a1a063e00da841d8c Mon Sep 17 00:00:00 2001 From: behruz-dev Date: Sat, 13 Sep 2025 15:28:17 +0500 Subject: [PATCH] fix proxy --- core/services/payment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/services/payment.py b/core/services/payment.py index 0e8d62f..65f503c 100644 --- a/core/services/payment.py +++ b/core/services/payment.py @@ -83,8 +83,8 @@ class Atmos: } res = requests.post(url=url, headers=headers, json=data, proxies={ - 'http': 'http://94.230.232.47:8080', - 'https': 'http://94.230.232.47:8080', + 'http': 'socks5h://127.0.0.1:10800', + 'https': 'socks5h://127.0.0.1:10800', }) if res.status_code == 200: return res.json()