отключение продаж и покупок
test / deploy_trader_prod (push) Successful in 6m17s Details

dev
vlad zverzhkhovskiy 2025-09-09 23:19:18 +03:00
parent f801620c8a
commit ac32d89ad4
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
public static class BotModeSwitcher
{
private readonly static object _locker = new();
private static bool _canSell = true;
private static bool _canPurchase = true;
private static bool _canSell = false;
private static bool _canPurchase = false;
public static bool CanSell()
{