Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hardhat-tutorial/contracts/LW3Punks.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract LW3Punks is ERC721Enumerable, Ownable {
}

/**
* @dev mint allows an user to mint 1 NFT per transaction after the presale has ended.
* @dev mint allows a user to mint 1 NFT per transaction after the presale has ended.
*/
function mint() public payable onlyWhenNotPaused {
require(tokenIds < maxTokenIds, "Exceed maximum LW3Punks supply");
Expand Down Expand Up @@ -95,4 +95,4 @@ contract LW3Punks is ERC721Enumerable, Ownable {

// Fallback function is called when msg.data is not empty
fallback() external payable {}
}
}