Skip to content

Commit

Permalink
reverted changes to merkle whitelist
Browse files Browse the repository at this point in the history
  • Loading branch information
bearni95 committed May 30, 2024
1 parent 8a722fa commit 634a43a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nfts/contracts/taikoon/MerkleWhitelist.sol
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ contract MerkleWhitelist is ContextUpgradeable, UUPSUpgradeable, Ownable2StepUpg
/// @param _maxMints Max amount of free mints
/// @return Whether the wallet can mint
function canMint(address _minter, uint256 _maxMints) public view returns (bool) {
//if (blacklist.isBlacklisted(_minter)) revert ADDRESS_BLACKLISTED();
if (blacklist.isBlacklisted(_minter)) revert ADDRESS_BLACKLISTED();
bytes32 _leaf = leaf(_minter, _maxMints);
return !minted[_leaf];
}
Expand Down

0 comments on commit 634a43a

Please sign in to comment.