Skip to content

Commit

Permalink
fix: epoch start was effectively zero in Sepolia deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
bingen committed Dec 18, 2024
1 parent d11e15a commit 2193822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/DeploySepolia.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ contract DeploySepoliaScript is Script, Deployers, MockStakingV1Deployer {
votingThresholdFactor: VOTING_THRESHOLD_FACTOR,
minClaim: MIN_CLAIM,
minAccrual: MIN_ACCRUAL,
epochStart: uint32(block.timestamp - VESTING_EPOCH_START),
epochStart: block.timestamp - EPOCH_DURATION,
/// @audit Ensures that `initialInitiatives` can be voted on
epochDuration: EPOCH_DURATION,
epochVotingCutoff: EPOCH_VOTING_CUTOFF
Expand Down

0 comments on commit 2193822

Please sign in to comment.