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
2 changes: 1 addition & 1 deletion contracts/nft/erc721m/ERC721M.sol
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ contract ERC721M is
/// @return The stage info, wallet minted count, and stage minted count
function getStageInfo(uint256 index) external view override returns (MintStageInfo memory, uint32, uint256) {
if (index >= _mintStages.length) {
revert("InvalidStage");
revert InvalidStage();
}
uint32 walletMinted = _stageMintedCountsPerWallet[index][msg.sender];
uint256 stageMinted = _stageMintedCounts[index];
Expand Down
Loading