Skip to content

Commit e68d386

Browse files
Krishang NadgaudaKrishang Nadgauda
authored andcommitted
update comments for verify fn
1 parent b78f6a6 commit e68d386

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

contracts/feature/SignatureMintERC721.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ abstract contract SignatureMintERC721 is EIP712, ISignatureMintERC721 {
1919

2020
constructor() EIP712("SignatureMintERC721", "1") {}
2121

22-
/// @dev Verifies that a mint request is signed by an account holding MINTER_ROLE (at the time of the function call).
22+
/// @dev Verifies that a mint request is signed by an authorized account.
2323
function verify(MintRequest calldata _req, bytes calldata _signature)
2424
public
2525
view

contracts/signature-drop/SignatureDrop.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ contract SignatureDrop is
237237
super.claim(_receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data);
238238
}
239239

240+
/// @dev Verifies that a mint request is signed by an account holding MINTER_ROLE (at the time of the function call).
240241
function verify(ISignatureMintERC721.MintRequest calldata _req, bytes calldata _signature)
241242
external
242243
view

0 commit comments

Comments
 (0)