Skip to content

Commit

Permalink
chore: run linter checks
Browse files Browse the repository at this point in the history
Signed-off-by: Night Owl <[email protected]>
  • Loading branch information
nightowl121 committed Sep 8, 2023
1 parent 963ea15 commit d467acc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions contracts/core-contracts/cw-asset-manager/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pub fn execute(
amount,
recipient,
data,
info
info,
)?;
Ok(res)
}
Expand Down Expand Up @@ -157,7 +157,7 @@ mod exec {
Ok(Response::default())
}

#[allow(clippy:: too_many_arguments)]
#[allow(clippy::too_many_arguments)]
pub fn deposit_cw20_tokens(
deps: DepsMut,
env: Env,
Expand Down
1 change: 0 additions & 1 deletion contracts/core-contracts/cw-asset-manager/tests/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,6 @@ pub fn to_attribute_map(attrs: &Vec<Attribute>) -> HashMap<String, String> {
map
}


#[allow(warnings)]
pub fn get_event(res: &AppResponse, event: &str) -> Option<HashMap<String, String>> {
let event = res
Expand Down
1 change: 0 additions & 1 deletion contracts/cw-common/src/xcall_data_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,3 @@ mod tests {
assert_ne!(encoded_deposit, encode_deposit_revert);
}
}

0 comments on commit d467acc

Please sign in to comment.