Skip to content

Commit

Permalink
Merge pull request #3257 from Emurgo/fix/YOEXT-692/catalyst-incorrect…
Browse files Browse the repository at this point in the history
…-info

[hot/4.22.300] fixing incorrect data used in voting store
  • Loading branch information
vsubhuman authored Aug 10, 2023
2 parents c831071 + 0cc23f8 commit f4e9e1e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,21 +164,11 @@ class VotingPageContent extends Component<Props> {
registrationStart: nextFund?.registrationStart,
});

const fund = {
id: 8,
name: 'Fund9',
registrationStart: '2021-01-27T11:00:00Z',
registrationEnd: '2023-08-04T11:00:00Z',
votingStart: '2021-08-11T11:00:00Z',
votingEnd: '2023-08-25T11:00:00Z',
votingPowerThreshold: '450',
};

if (currentFund) {
const isLate = new Date() >= new Date(Date.parse(fund.registrationEnd));
const isEarly = new Date() <= new Date(Date.parse(fund.registrationStart));
const isBeforeVoting = new Date() <= new Date(Date.parse(fund.votingStart));
const isAfterVoting = new Date() >= new Date(Date.parse(fund.votingEnd));
const isLate = new Date() >= new Date(Date.parse(currentFund.registrationEnd));
const isEarly = new Date() <= new Date(Date.parse(currentFund.registrationStart));
const isBeforeVoting = new Date() <= new Date(Date.parse(currentFund.votingStart));
const isAfterVoting = new Date() >= new Date(Date.parse(currentFund.votingEnd));
const isBetweenVoting = !isBeforeVoting && !isAfterVoting;

if (isEarly) {
Expand Down
2 changes: 1 addition & 1 deletion packages/yoroi-extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/yoroi-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yoroi",
"version": "4.22.200",
"version": "4.22.300",
"description": "Cardano ADA wallet",
"scripts": {
"dev:build": "rimraf dev/ && babel-node scripts/build --type=debug",
Expand Down

0 comments on commit f4e9e1e

Please sign in to comment.