Skip to content

Commit

Permalink
More cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
maurolacy committed Mar 3, 2021
1 parent 424041e commit 265f485
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion contracts/ibc-reflect-send/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ use cosmwasm_std::{
use crate::ibc::build_timeout_timestamp;
use crate::ibc_msg::PacketMsg;
use crate::msg::{
AccountInfo, AccountResponse, AdminResponse, ExecuteMsg, InitMsg, ListAccountsResponse, QueryMsg,
AccountInfo, AccountResponse, AdminResponse, ExecuteMsg, InitMsg, ListAccountsResponse,
QueryMsg,
};
use crate::state::{accounts, accounts_read, config, config_read, Config};

Expand Down
7 changes: 6 additions & 1 deletion contracts/ibc-reflect/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ pub fn init(deps: DepsMut, _env: Env, _info: MessageInfo, msg: InitMsg) -> StdRe
}

#[entry_point]
pub fn execute(deps: DepsMut, _env: Env, info: MessageInfo, msg: ExecuteMsg) -> StdResult<Response> {
pub fn execute(
deps: DepsMut,
_env: Env,
info: MessageInfo,
msg: ExecuteMsg,
) -> StdResult<Response> {
match msg {
ExecuteMsg::InitCallback { id, contract_addr } => {
execute_init_callback(deps, info, id, contract_addr)
Expand Down

0 comments on commit 265f485

Please sign in to comment.