diff --git a/src/libraries/external/KickerActions.sol b/src/libraries/external/KickerActions.sol index d39a94236..eec378563 100644 --- a/src/libraries/external/KickerActions.sol +++ b/src/libraries/external/KickerActions.sol @@ -221,8 +221,8 @@ library KickerActions { // retrieve timestamp of latest burn event and last burn timestamp uint256 latestBurnEpoch = reserveAuction_.latestBurnEventEpoch; - // check that at least two weeks have passed since the last reserve auction completed - if (block.timestamp < reserveAuction_.kicked + 2 weeks + 72 hours) { + // check that at least five days have passed since the last reserve auction completed + if (block.timestamp < reserveAuction_.kicked + 5 days + 72 hours) { revert ReserveAuctionTooSoon(); } diff --git a/tests/forge/unit/ERC721Pool/ERC721PoolReserveAuction.t.sol b/tests/forge/unit/ERC721Pool/ERC721PoolReserveAuction.t.sol index 676e73fdf..c9c9bef97 100644 --- a/tests/forge/unit/ERC721Pool/ERC721PoolReserveAuction.t.sol +++ b/tests/forge/unit/ERC721Pool/ERC721PoolReserveAuction.t.sol @@ -176,15 +176,15 @@ contract ERC721PoolReserveAuctionTest is ERC721HelperContract { // check that you can't start a new auction immediately after the last one finished _assertReserveAuctionTooSoon(); - // check that you can't start a new auction two weeks after the last start... - skip(2 weeks - 72 hours); + // check that you can't start a new auction five days after the last start... + skip(5 days - 72 hours); _assertReserveAuctionTooSoon(); // ...or a day later... skip(1 days); _assertReserveAuctionTooSoon(); - // ...but you can start another auction 2 weeks after the last one completed + // ...but you can start another auction five days after the last one completed skip(72 hours - 1 days); _kickReserveAuction({ from: _bidder,