From fd0e2b31b10efe565323e85e07f69392342cd3ed Mon Sep 17 00:00:00 2001 From: Nawaz Haider Date: Mon, 12 Jan 2026 20:41:05 +0600 Subject: [PATCH] Remove unnecessary async task for caching token trading info in main function --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index f930378..eeaf10a 100644 --- a/main.py +++ b/main.py @@ -43,7 +43,6 @@ async def main(): return up_token, down_token, market_slug = await fetch_tokens() book = OrderBook(up_token, down_token, market_slug) - await asyncio.create_task(cache_token_trading_infos(book)) book.start() await asyncio.sleep(5) # Allow some time for initial order book data