remove truncation of blockspeed to more accurately estimate

This commit is contained in:
Tino Rusch 2025-02-19 11:36:38 +01:00
parent 277c68d30a
commit 5522c76d0a

View File

@ -38,7 +38,7 @@ const remainingBlocks = computed(() => {
})
const estimateTime = computed(() => {
const seconds = remainingBlocks.value * Number((store.blocktime / 1000).toFixed()) * 1000
const seconds = remainingBlocks.value * store.blocktime
return seconds
})