Skip to content

Commit

Permalink
fix: return type
Browse files Browse the repository at this point in the history
  • Loading branch information
Kishan-Dhakan committed Jan 4, 2024
1 parent 2267475 commit c88c30c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use crate::msg::{ExecuteMsg, InstantiateMsg, QueryMsg};
use cosmwasm_std::{Addr, Binary, Coin};
use cosmwasm_std::{Addr, Coin};
use injective_cosmwasm::{checked_address_to_subaccount_id, MarketId};
use injective_math::{scale::Scaled, FPDecimal};
use injective_std::types::injective::exchange::v1beta1::{MsgInstantSpotMarketLaunch, QuerySpotMarketsRequest};
use injective_test_tube::{Account, Exchange, InjectiveTestApp, Module, Wasm};
use injective_test_tube::{Account, Exchange, InjectiveTestApp, Module, Wasm, injective_cosmwasm::SpotMarketResponse};

pub const BASE_DENOM: &str = "inj";
pub const QUOTE_DENOM: &str = "usdt";
Expand Down Expand Up @@ -85,5 +85,5 @@ fn test_instantiation() {
// Query
let market_id = MarketId::new(spot_market_id).unwrap();
let query_msg = QueryMsg::TestSpotMarketQuery { market_id };
let _res: Binary = wasm.query(&contract_address, &query_msg).unwrap();
let _res: SpotMarketResponse = wasm.query(&contract_address, &query_msg).unwrap();
}

0 comments on commit c88c30c

Please sign in to comment.