Skip to content

Commit

Permalink
hotfix: allow updating the merkle root before sale starts
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideSilva committed May 6, 2024
1 parent 3c7b22b commit b77c5e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/contracts/contracts/token/Sale.sol
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ contract Sale is ISale, RisingTide, ERC165, AccessControl, ReentrancyGuard {

function setMerkleRoot(
bytes32 _merkleRoot
) external onlyRole(DEFAULT_ADMIN_ROLE) beforeSale nonReentrant {
) external onlyRole(DEFAULT_ADMIN_ROLE) nonReentrant {
merkleRoot = _merkleRoot;
}

Expand Down

0 comments on commit b77c5e7

Please sign in to comment.