Skip to content

Commit

Permalink
Fix MerkleClaimable.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
2manslkh authored Feb 13, 2024
1 parent e27e83c commit 001ab98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/protocol/contracts/team/airdrop/MerkleClaimable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ abstract contract MerkleClaimable is EssentialContract {

modifier ongoingClaim() {
if (
merkleRoot == 0x0 || claimStart == 0 || claimEnd == 0 || claimStart > block.timestamp
|| claimEnd < block.timestamp
merkleRoot == 0x0 || claimStart == 0 || claimEnd == 0 || claimStart < block.timestamp
|| claimEnd > block.timestamp
) revert CLAIM_NOT_ONGOING();
_;
}
Expand Down

0 comments on commit 001ab98

Please sign in to comment.