From b77c5e78621812e98a8cc4f7ad6e6a170f3a7a65 Mon Sep 17 00:00:00 2001 From: Davide Silva Date: Mon, 6 May 2024 12:32:23 +0100 Subject: [PATCH] hotfix: allow updating the merkle root before sale starts --- packages/contracts/contracts/token/Sale.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/contracts/contracts/token/Sale.sol b/packages/contracts/contracts/token/Sale.sol index f49583ee..2d3cf8f7 100644 --- a/packages/contracts/contracts/token/Sale.sol +++ b/packages/contracts/contracts/token/Sale.sol @@ -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; }