Skip to content

Commit cb65d9f

Browse files
authored
Merge pull request #2168 from IntersectMBO/staging
fix: target start date of the expiration epoch in GAs
2 parents 7732713 + c6358e9 commit cb65d9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

govtool/backend/sql/list-proposals.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ SELECT
5555
) as description,
5656
CASE
5757
WHEN meta.network_name::text = 'mainnet' THEN
58-
latest_epoch.start_time + (gov_action_proposal.expiration - latest_epoch.no)::bigint * INTERVAL '5 days' + INTERVAL '5 days'
58+
latest_epoch.start_time + (gov_action_proposal.expiration - latest_epoch.no)::bigint * INTERVAL '5 days'
5959
ELSE
60-
latest_epoch.start_time + (gov_action_proposal.expiration - latest_epoch.no)::bigint * INTERVAL '1 day' + INTERVAL '1 day'
60+
latest_epoch.start_time + (gov_action_proposal.expiration - latest_epoch.no)::bigint * INTERVAL '1 day'
6161
END AS expiry_date,
6262
gov_action_proposal.expiration,
6363
creator_block.time,

0 commit comments

Comments
 (0)