Skip to content

Commit

Permalink
Updates Voting registration dates
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolaglumac committed Jun 1, 2021
1 parent 80c3454 commit 7566a5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions source/renderer/app/config/votingConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ export const VOTING_REGISTRATION_FEE_CALCULATION_AMOUNT = 1; // 1 ADA | unit: AD
export const VOTING_REGISTRATION_PIN_CODE_LENGTH = 4;
export const VOTING_REGISTRATION_MIN_TRANSACTION_CONFIRMATIONS = isDev ? 2 : 10;
export const VOTING_REGISTRATION_TRANSACTION_POLLING_INTERVAL = 1000; // 1 second | unit: milliseconds
export const VOTING_REGISTRATION_END_DATE = new Date('Apr 20, 2021, 19:00 UTC');
export const VOTING_REGISTRATION_END_DATE = new Date('Jun 11, 2021, 11:00 UTC');
export const VOTING_REGISTRATION_END_CHECK_INTERVAL = 3000; // 3 seconds | unit: milliseconds
export const VOTING_REGISTRATION_CAST_START_DATE = new Date(
'Apr 22, 2021, 19:00 UTC'
'Jun 15, 2021, 11:00 UTC'
);
export const VOTING_REGISTRATION_CAST_END_DATE = new Date(
'May 5, 2021, 19:00 UTC'
'Jun 25, 2021, 11:00 UTC'
);
export const VOTING_REGISTRATION_NEW_START_DATE = new Date(
'May 18, 2021, 19:00 UTC'
'Jul 5, 2021, 16:00 UTC'
);
2 changes: 1 addition & 1 deletion source/renderer/app/stores/SidebarStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default class SidebarStore extends Store {
[categories.STAKING_DELEGATION_COUNTDOWN.name]: false,
[categories.STAKING.name]: true,
[categories.SETTINGS.name]: true,
[categories.VOTING.name]: isMainnet || isDev,
[categories.VOTING.name]: (isMainnet && !isFlight) || isDev,
[categories.NETWORK_INFO.name]:
isFlight || isIncentivizedTestnet || isShelleyTestnet,
};
Expand Down

0 comments on commit 7566a5c

Please sign in to comment.