correct upgrade time for proposals

I think it will be a more dynamic option)
This commit is contained in:
ToTheMars2 2024-04-02 14:59:12 +03:00 committed by GitHub
parent 5fed99b1ab
commit 838c74dbce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -128,7 +128,7 @@ const upgradeCountdown = computed((): number => {
if (height > 0) {
const base = useBaseStore();
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 end = new Date(proposal.value.content?.plan?.time || '');