Skip to content

Commit

Permalink
Set MIN_ACTIVATION_HEADROOM to 3 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
BigLep authored Jan 31, 2025
1 parent 406b4b8 commit 66d9ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/F3Parameters.sol
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ contract F3Parameters is Ownable {
uint128 constant BLOCK_TIME = 30 seconds;

/// @dev The minimum headroom time in seconds before activation.
uint128 constant MIN_ACTIVATION_HEADROOM = 4 days;
uint128 constant MIN_ACTIVATION_HEADROOM = 3 days;
/// @dev The minimum headroom time in blocks.
uint128 public constant MIN_ACTIVATION_HEADROOM_BLOCKS = MIN_ACTIVATION_HEADROOM / BLOCK_TIME;

Expand Down

0 comments on commit 66d9ae0

Please sign in to comment.