Skip to content

Commit

Permalink
fix: merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
0xFable committed Apr 18, 2024
2 parents 01ddd01 + b5495f1 commit 8a4e0df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/liquidity_hub/pool-manager/src/tests/suite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ impl TestingSuite {
result: impl Fn(StdResult<Uint128>),
) -> &mut Self {
// Get the LP token from Config
let lp_token_response: PairInfo = self
let lp_token_response: PairInfoResponse = self
.app
.wrap()
.query_wasm_smart(
Expand All @@ -493,7 +493,7 @@ impl TestingSuite {
let balance: Uint128 = self
.app
.wrap()
.query_balance(sender, lp_token_response.lp_denom)
.query_balance(sender, lp_token_response.pair_info.lp_denom)
.unwrap()
.amount;

Expand Down

0 comments on commit 8a4e0df

Please sign in to comment.