This commit is contained in:
liangping 2024-04-16 09:54:29 +08:00
commit 603d7ce227

View File

@ -128,7 +128,7 @@ const upgradeCountdown = computed((): number => {
if (height > 0) { if (height > 0) {
const base = useBaseStore(); const base = useBaseStore();
const current = Number(base.latest?.block?.header?.height || 0); const current = Number(base.latest?.block?.header?.height || 0);
return (height - current) * 6 * 1000; return (height - current) * Number((base.blocktime / 1000).toFixed()) * 1000;
} }
const now = new Date(); const now = new Date();
const end = new Date(proposal.value.content?.plan?.time || ''); const end = new Date(proposal.value.content?.plan?.time || '');