Skip to content

Commit

Permalink
post-review clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
oldremez committed Apr 13, 2023
1 parent d3b0160 commit 03421cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ fn is_subdao_legit(deps: &DepsMut, subdao_core: &Addr) -> Result<bool, PrePropos
let main_dao = get_main_dao_address(deps)?;

let subdao: StdResult<SubDao> = deps.querier.query_wasm_smart(
main_dao.clone(),
main_dao,
&MainDaoQueryMsg::GetSubDao {
address: subdao_core.to_string(),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1409,7 +1409,7 @@ fn test_subdao_queries() {
let res: Vec<SubDao> = app
.wrap()
.query_wasm_smart(
core_addr.clone(),
core_addr,
&DaoQueryMsg::ListSubDaos {
start_after: None,
limit: None,
Expand Down

0 comments on commit 03421cc

Please sign in to comment.