Merge pull request 'Reduce block polling interval' (#1) from dboreham/fix-missing-blocks into master

Reviewed-on: #1
This commit is contained in:
David Boreham 2024-08-20 17:29:16 +00:00
commit bc8d91c183

View File

@ -19,6 +19,12 @@ app.use(LazyLoad, { component: true });
// Mount vue app
app.mount('#app');
// fetch new block(s) on this interval, specified in miliseconds
// note that the design of the block fetching code is such that it
// will MISS BLOCKS if this interval is longer than the block time
// TODO: make this configurable
const blockFetchInterval = 2 * 1000;
// fetch latest block every 6s
const blockStore = useBaseStore();
const requestCounter = ref(0);
@ -28,4 +34,4 @@ setInterval(() => {
// max allowed request
blockStore.fetchLatest().finally(() => (requestCounter.value -= 1));
}
}, 6000);
}, blockFetchInterval);