Skip to content

Commit

Permalink
(circles): remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminbollen committed Oct 2, 2024
1 parent ce7d2ad commit 408b7ce
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/circles/Circles.sol
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,6 @@ contract Circles is ERC1155, ICirclesErrors {
return (0, 0, 0);
}

// if (uint256(mintTime.lastMintTime) + 1 hours > block.timestamp) {
// // Mint time is set to indefinite future for stopped mints in v2
// // and only complete hours get minted, so shortcut the calculation
// return (0, 0, 0);
// }

// calculate the start of the claimable period
uint256 startMint = _max(block.timestamp - MAX_CLAIM_DURATION, mintTime.lastMintTime);

Expand Down

0 comments on commit 408b7ce

Please sign in to comment.