From c46e3dd851476c0d97c8be406245391f3eda25b4 Mon Sep 17 00:00:00 2001 From: AugustoL Date: Wed, 23 Nov 2022 08:55:10 -0300 Subject: [PATCH] fix(proposals): finish time in boosted proposals --- src/utils/proposals.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/proposals.ts b/src/utils/proposals.ts index a1ae1d0118..0281b0f93f 100644 --- a/src/utils/proposals.ts +++ b/src/utils/proposals.ts @@ -424,7 +424,7 @@ export const decodeProposalStatus = function ( return { status: 'Boosted', boostTime: boostedPhaseTime, - finishTime: boostedPhaseTime, + finishTime: boostedPhaseTime.plus(boostedVotePeriodLimit), pendingAction: PendingAction.None, }; }