From d1ac7e8e846cdc158d35af24df191dc60d2cc254 Mon Sep 17 00:00:00 2001 From: Noloquideus Date: Wed, 22 Apr 2026 13:34:55 +0300 Subject: [PATCH] fix: 20 rub mock --- src/presentation/routing/order.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/presentation/routing/order.py b/src/presentation/routing/order.py index d3b9a59..2b4d29a 100644 --- a/src/presentation/routing/order.py +++ b/src/presentation/routing/order.py @@ -18,9 +18,9 @@ from src.infrastructure.config import settings order_router = APIRouter(prefix='/order', tags=['orders']) ITPAY_API_BASE = 'https://api.gw.itpay.ru' -HARDCODED_USDT_TO_RUB = Decimal('100') -HARDCODED_GAS_RUB = Decimal('15') -HARDCODED_OUR_COMMISSION_RUB = Decimal('25') +HARDCODED_USDT_TO_RUB = Decimal('10') +HARDCODED_GAS_RUB = Decimal('5') +HARDCODED_OUR_COMMISSION_RUB = Decimal('5') HARDCODED_ITPAY_TEST_AMOUNT_RUB = Decimal('20.00')