A decentralized music tracking and discovery platform built on AT Protocol 🎵

Remove periodic yield during pagination

-6
-6
tap/src/main.ts
··· 234 234 235 235 hasMore = events.length === PAGE_SIZE; 236 236 page++; 237 - 238 - if (hasMore && page % YIELD_EVERY_N_PAGES === 0) { 239 - await new Promise((resolve) => 240 - setTimeout(resolve, YIELD_DELAY_MS), 241 - ); 242 - } 243 237 } 244 238 245 239 logger.info`📤 Sent all historical events: ${totalEvents} total (${page} pages)`;