We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04b06f2 commit 9b9efe8Copy full SHA for 9b9efe8
www/components/Tutorial/codeSnippets.ts
@@ -75,7 +75,7 @@ contract NFTContract is ERC721 {
75
);
76
}
77
78
- function mintAllowList(uint256 _tokenId, bytes32[] _proof) external {
+ function mintAllowList(uint256 _tokenId, bytes32[] calldata _proof) external {
79
require(allowListed(msg.sender, _proof), "You are not on the allowlist");
80
_mint(msg.sender, _tokenId);
81
0 commit comments