Skip to content

Commit 265f485

Browse files
committed
More cargo fmt
1 parent 424041e commit 265f485

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

contracts/ibc-reflect-send/src/contract.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ use cosmwasm_std::{
66
use crate::ibc::build_timeout_timestamp;
77
use crate::ibc_msg::PacketMsg;
88
use crate::msg::{
9-
AccountInfo, AccountResponse, AdminResponse, ExecuteMsg, InitMsg, ListAccountsResponse, QueryMsg,
9+
AccountInfo, AccountResponse, AdminResponse, ExecuteMsg, InitMsg, ListAccountsResponse,
10+
QueryMsg,
1011
};
1112
use crate::state::{accounts, accounts_read, config, config_read, Config};
1213

contracts/ibc-reflect/src/contract.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ pub fn init(deps: DepsMut, _env: Env, _info: MessageInfo, msg: InitMsg) -> StdRe
3131
}
3232

3333
#[entry_point]
34-
pub fn execute(deps: DepsMut, _env: Env, info: MessageInfo, msg: ExecuteMsg) -> StdResult<Response> {
34+
pub fn execute(
35+
deps: DepsMut,
36+
_env: Env,
37+
info: MessageInfo,
38+
msg: ExecuteMsg,
39+
) -> StdResult<Response> {
3540
match msg {
3641
ExecuteMsg::InitCallback { id, contract_addr } => {
3742
execute_init_callback(deps, info, id, contract_addr)

0 commit comments

Comments
 (0)