Skip to content

Commit a055392

Browse files
committed
change MIN_LOCKUP_PERIOD to 2 weeks
1 parent a14b409 commit a055392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/StakeManager.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ contract StakeManager is Ownable {
3535

3636
uint256 public constant EPOCH_SIZE = 1 weeks;
3737
uint256 public constant YEAR = 365 days;
38-
uint256 public constant MIN_LOCKUP_PERIOD = 12 weeks; // 3 months
38+
uint256 public constant MIN_LOCKUP_PERIOD = 2 weeks;
3939
uint256 public constant MAX_LOCKUP_PERIOD = 4 * YEAR; // 4 years
4040
uint256 public constant MP_APY = 1;
4141
uint256 public constant MAX_BOOST = 4;

0 commit comments

Comments
 (0)