Skip to content

Commit

Permalink
Update contracts/gateway/tests/mock.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
cgorenflo authored Sep 19, 2023
1 parent ba0762b commit 300c16f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/gateway/tests/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ pub fn mock_router_execute(
match msg {
connection_router::msg::ExecuteMsg::RouteMessages(msgs) => {
for msg in msgs {
let msg: connection_router::state::Message = msg.try_into()?;
let msg = connection_router::state::Message::try_from(msg)?;
MOCK_ROUTER_MESSAGES.save(deps.storage, msg.id.to_string(), &msg)?;
}
}
Expand Down

0 comments on commit 300c16f

Please sign in to comment.