This commit is contained in:
Christopher Cookman 2025-08-31 15:35:01 -06:00
parent 5910414e39
commit aca40de484

View file

@ -35,6 +35,10 @@ async function fetchEvents() {
setTimeout(fetchEvents, 1000);
}
fetchEvents();
(async () => {
await getLastEventIndex();
log.info("Event watcher started.");
await fetchEvents();
})();
module.exports = emitter;