Skip to content

Commit

Permalink
fix: revert type
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomariscal committed Dec 17, 2024
1 parent 7b3032c commit d6c83fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions l2-contracts/src/ZkCappedMinterV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ contract ZkCappedMinterV2 is AccessControl, Pausable {
bool public closed;

/// @notice The timestamp when minting can begin.
uint256 public immutable START_TIME;
uint48 public immutable START_TIME;

/// @notice The timestamp after which minting is no longer allowed (inclusive).
uint256 public immutable EXPIRATION_TIME;
uint48 public immutable EXPIRATION_TIME;

/// @notice The metadata URI for this minter.
bytes32 public metadataURI;
Expand Down

0 comments on commit d6c83fa

Please sign in to comment.