Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
cgorenflo committed Sep 19, 2023
1 parent 3cc9b5a commit 13777e9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/connection-router/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ pub mod execute {
wasm_msgs.push(WasmMsg::Execute {
contract_addr: destination_chain.gateway.address.to_string(),
msg: to_binary(&ExecuteMsg::RouteMessages(
msgs_by_destination.map(|msg| msg.clone()).collect(),
msgs_by_destination.cloned().collect(),
))?,
funds: vec![],
});
Expand Down
1 change: 0 additions & 1 deletion contracts/gateway/src/contract.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#[cfg(not(feature = "library"))]
use cosmwasm_std::entry_point;
use cosmwasm_std::{to_binary, Binary, Deps, DepsMut, Env, MessageInfo, Response, StdResult};
use error_stack::Report; //this is here to test the linting changes

use crate::{
error::ContractError,
Expand Down

0 comments on commit 13777e9

Please sign in to comment.