Skip to content

Commit

Permalink
Increase CSP factory pause window to 4 years, buffer period to 180 days.
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Ignacio Ubeira committed Feb 23, 2024
1 parent 6198fd7 commit 7d50cd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/pool-utils/contracts/factories/FactoryWidePauseWindow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ contract FactoryWidePauseWindow {
// This contract relies on timestamps in a similar way as `TemporarilyPausable` does - the same caveats apply.
// solhint-disable not-rely-on-time

uint256 private constant _INITIAL_PAUSE_WINDOW_DURATION = 90 days;
uint256 private constant _BUFFER_PERIOD_DURATION = 30 days;
uint256 private constant _INITIAL_PAUSE_WINDOW_DURATION = 4 * 365 days;
uint256 private constant _BUFFER_PERIOD_DURATION = 180 days;

// Time when the pause window for all created Pools expires, and the pause window duration of new Pools becomes
// zero.
Expand Down

0 comments on commit 7d50cd0

Please sign in to comment.