Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ash-burnt committed Sep 30, 2024
1 parent 3cdc817 commit 6005a4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions contracts/proxy/src/contract.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
use crate::error::ContractResult;
use crate::msg::{ExecuteMsg, InstantiateMsg};
use crate::{execute, CONTRACT_NAME, CONTRACT_VERSION};
use cosmwasm_std::{
entry_point, DepsMut, Env, MessageInfo, Response,
};
use cosmwasm_std::{entry_point, DepsMut, Env, MessageInfo, Response};

#[entry_point]
pub fn instantiate(
Expand Down
4 changes: 1 addition & 3 deletions contracts/proxy/src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ use crate::error::ContractError::{InvalidCodeID, InvalidMsgType, Unauthorized};
use crate::error::ContractResult;
use crate::msg::ProxyMsg;
use crate::state::{ADMIN, CODE_IDS};
use cosmwasm_std::{
to_json_binary, Addr, Deps, DepsMut, Event, MessageInfo, Response, WasmMsg,
};
use cosmwasm_std::{to_json_binary, Addr, Deps, DepsMut, Event, MessageInfo, Response, WasmMsg};

pub fn init(
deps: DepsMut,
Expand Down
2 changes: 1 addition & 1 deletion contracts/proxy/src/msg.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use cosmwasm_schema::{cw_serde};
use cosmwasm_schema::cw_serde;
use cosmwasm_std::{Addr, Binary, Coin, WasmMsg};

#[cw_serde]
Expand Down

0 comments on commit 6005a4d

Please sign in to comment.