Skip to content

Commit

Permalink
style: update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kulkarohan committed Jun 26, 2023
1 parent f0c1c48 commit e418f13
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/ERC721Drop.sol
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,13 @@ contract ERC721Drop is
/// @param quantity quantity to purchase
/// @param comment comment to include in the IERC721Drop.Sale event
/// @return tokenId of the first token minted
function purchaseWithRecipient(address recipient, uint256 quantity, string calldata comment) external payable nonReentrant onlyPublicSaleActive returns (uint256) {
function purchaseWithRecipient(address recipient, uint256 quantity, string calldata comment)
external
payable
nonReentrant
onlyPublicSaleActive
returns (uint256)
{
return _handlePurchase(recipient, quantity, comment);
}

Expand Down

0 comments on commit e418f13

Please sign in to comment.