gmx metadata and backfill in finaldata

This commit is contained in:
tim
2025-06-16 20:06:12 -04:00
parent eef803d3d6
commit 97f98ba7cf

View File

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