Skip to content

Commit

Permalink
fix: make sureDEPLOY_TIME is immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
GalloDaSballo committed Jun 30, 2022
1 parent 10e0a2f commit 355c339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/RewardsManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ contract RewardsManager is ReentrancyGuard {

using SafeERC20 for IERC20;

uint256 public DEPLOY_TIME; // NOTE: Must be `immutable`, remove `immutable` for coverage report
uint256 public immutable DEPLOY_TIME; // NOTE: Must be `immutable`, remove `immutable` for coverage report
uint256 public constant SECONDS_PER_EPOCH = 604800; // One epoch is one week
// This allows to specify rewards on a per week basis, making it easier to interact with contract

Expand Down

0 comments on commit 355c339

Please sign in to comment.