Skip to content

Commit

Permalink
chore: fix test constants for 90s state and 7.5min epoch
Browse files Browse the repository at this point in the history
  • Loading branch information
yohanelly95 committed Sep 24, 2024
1 parent 24536a2 commit 5b5607d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/helpers/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ const { BigNumber } = ethers;
const DEFAULT_ADMIN_ROLE_HASH = '0x0000000000000000000000000000000000000000000000000000000000000000';
const ONE_ETHER = BigNumber.from(10).pow(BigNumber.from(18));

const EPOCH_LENGTH = BigNumber.from(300);
const EPOCH_LENGTH = BigNumber.from(450);
const BASE_DENOMINATOR = BigNumber.from(10000000);
const NUM_BLOCKS = 10;
const NUM_STATES = BigNumber.from(5);
const STATE_LENGTH = BigNumber.from(60);
const STATE_LENGTH = BigNumber.from(90);
const GRACE_PERIOD = 0;
const UNSTAKE_LOCK_PERIOD = 1;
const WITHDRAW_LOCK_PERIOD = 1;
Expand Down

0 comments on commit 5b5607d

Please sign in to comment.