From 97f98ba7cf68f48162e8521b52b663f3c98008d3 Mon Sep 17 00:00:00 2001 From: tim Date: Mon, 16 Jun 2025 20:06:12 -0400 Subject: [PATCH] gmx metadata and backfill in finaldata --- src/dexorder/gmx/_handle.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/dexorder/gmx/_handle.py b/src/dexorder/gmx/_handle.py index 4267e12..10b118b 100644 --- a/src/dexorder/gmx/_handle.py +++ b/src/dexorder/gmx/_handle.py @@ -160,8 +160,6 @@ def create_backfill_handler(ohlcs: FinalOHLCRepository): updates = await fetch_price_updates() backfill_addrs = [addr for addr, time, price in updates if not ohlcs.has_symbol(addr)] - backfill_addrs = [backfill_addrs[0]] # todo remove debug - if backfill_addrs: log.info(f'Backfilling {len(backfill_addrs)} new GMX tokens') await asyncio.gather(*[backfill_token(ohlcs, a) for a in backfill_addrs])