Skip to content

Commit 75b98bc

Browse files
committed
Remove mint price denom limitation on wl-merkletree
1 parent 509237b commit 75b98bc

File tree

1 file changed

+0
-4
lines changed
  • contracts/whitelists/whitelist-merkletree/src

1 file changed

+0
-4
lines changed

contracts/whitelists/whitelist-merkletree/src/contract.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@ pub fn instantiate(
5151
));
5252
}
5353

54-
if msg.mint_price.denom != NATIVE_DENOM {
55-
return Err(ContractError::InvalidDenom(msg.mint_price.denom));
56-
}
57-
5854
if msg.start_time > msg.end_time {
5955
return Err(ContractError::InvalidStartTime(
6056
msg.start_time,

0 commit comments

Comments
 (0)