Skip to content

Commit

Permalink
feat: changes from @gorgos
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrobot committed Aug 12, 2024
1 parent 3a984c9 commit cd435ba
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion contracts/atomic-order-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cw-utils = { workspace = true }
cw2 = { workspace = true }
injective-cosmwasm = { workspace = true, path = "../../packages/injective-cosmwasm" }
injective-math = { workspace = true, path = "../../packages/injective-math" }
injective-std = { workspace = true }
injective-std = { workspace = true, path = "../../packages/injective-std" }
prost = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
Expand Down
1 change: 0 additions & 1 deletion contracts/atomic-order-example/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ fn handle_atomic_order_reply(
.map_err(ContractError::SubMsgFailure)
.unwrap();

deps.api.debug(">>>>>>>>>>");
let first_messsage = binding.msg_responses.first();

let order_response = Exchange::MsgCreateSpotMarketOrderResponse::decode(
Expand Down
2 changes: 0 additions & 2 deletions contracts/dummy/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ pub fn instantiate(
info: MessageInfo,
_msg: InstantiateMsg,
) -> Result<Response, ContractError> {
deps.api.debug("Instantiate contract");
deps.api.debug(">>>>>>>>>>>>>>>>>>>>");
set_contract_version(deps.storage, CONTRACT_NAME, CONTRACT_VERSION)?;
COUNTER.save(deps.storage, &0u32)?;
ACTIVE.save(deps.storage, &false)?;
Expand Down
2 changes: 1 addition & 1 deletion contracts/injective-cosmwasm-mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ cw-storage-plus = { workspace = true }
cw2 = { workspace = true }
injective-cosmwasm = { workspace = true, path = "../../packages/injective-cosmwasm" }
injective-math = { workspace = true, path = "../../packages/injective-math" }
injective-std = { workspace = true }
injective-std = { workspace = true, path = "../../packages/injective-std" }
prost = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
Expand Down

0 comments on commit cd435ba

Please sign in to comment.