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])