Skip to content

Commit

Permalink
convince clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
epanchee committed Feb 17, 2025
1 parent f7c09d6 commit c0c0440
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/tokenomics/maker/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ fn update_config(
second_receiver_params: Option<SecondReceiverParams>,
collect_cooldown: Option<u64>,
astro_token: Option<AssetInfo>,
dev_fund_conf: Option<UpdateDevFundConfig>,
dev_fund_conf: Option<Box<UpdateDevFundConfig>>,
) -> Result<Response, ContractError> {
let mut attributes = vec![attr("action", "set_config")];

Expand Down
2 changes: 1 addition & 1 deletion contracts/tokenomics/maker/tests/maker_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2111,7 +2111,7 @@ fn set_dev_fund_config(
second_receiver_params: None,
collect_cooldown: None,
astro_token: None,
dev_fund_config: Some(dev_fund_config),
dev_fund_config: Some(Box::new(dev_fund_config)),
},
&[],
)
Expand Down
2 changes: 1 addition & 1 deletion packages/astroport/src/maker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ pub enum ExecuteMsg {
/// The ASTRO token asset info
astro_token: Option<AssetInfo>,
/// Dev tax configuration
dev_fund_config: Option<UpdateDevFundConfig>,
dev_fund_config: Option<Box<UpdateDevFundConfig>>,
},
/// Add bridge tokens used to swap specific fee tokens to ASTRO (effectively declaring a swap route)
UpdateBridges {
Expand Down

0 comments on commit c0c0440

Please sign in to comment.