Remove unnecessary async task for caching token trading info in main function

This commit is contained in:
Nawaz Haider
2026-01-12 20:41:05 +06:00
parent ca8e167275
commit fd0e2b31b1
-1
View File
@@ -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