Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jcompagni10 committed Feb 24, 2025
1 parent a9d75cd commit 42c41cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/dao/neutron-chain-manager/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ fn check_dex_update_msg_params(
return Err(ContractError::Unauthorized {});
}

if dex_params.params.whitelisted_lps != msg_update_params.params.whitelisted_lps
if dex_params.whitelisted_lps != msg_update_params.whitelisted_lps
&& !dex_update_param_permission.whitelisted_lps
{
return Err(ContractError::Unauthorized {});
Expand Down

0 comments on commit 42c41cf

Please sign in to comment.