Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kishan-Dhakan committed Nov 13, 2023
1 parent 3cb14e3 commit 5791ce9
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::msg::{ExecuteMsg, InstantiateMsg, QueryMsg};
use cosmwasm_std::{Coin, Addr, Binary};
use cosmwasm_std::{Addr, Binary, Coin};
use injective_cosmwasm::{checked_address_to_subaccount_id, MarketId};
use injective_test_tube::{Account, InjectiveTestApp, Module, Wasm};

Expand Down Expand Up @@ -31,8 +31,7 @@ fn test_instantiation() {
.address;

// Execute contract
let buyer_subaccount_id =
checked_address_to_subaccount_id(&Addr::unchecked(buyer.address()), 1u32);
let buyer_subaccount_id = checked_address_to_subaccount_id(&Addr::unchecked(buyer.address()), 1u32);
let _res = wasm
.execute(
&contract_address,
Expand Down

0 comments on commit 5791ce9

Please sign in to comment.