Skip to content

Commit

Permalink
lower deposit amount
Browse files Browse the repository at this point in the history
  • Loading branch information
Buckram123 committed Oct 2, 2024
1 parent bdcf977 commit 74064d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interchain/modules-clone-testing/tests/dex/astrovault.rs
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ mod ratio_pool_tests {
fn test_provide_liquidity() -> anyhow::Result<()> {
let dex_tester = setup_ratio_pool()?;

let deposit_amount = 10_000_000;
let deposit_amount = 1_000_000;

// Pool is normalized right now so should be fine to provide "non-equal" amounts

Expand All @@ -694,7 +694,7 @@ mod ratio_pool_tests {
fn test_withdraw_liquidity() -> anyhow::Result<()> {
let dex_tester = setup_ratio_pool()?;

let deposit_amount = 10_000_000;
let deposit_amount = 1_000_000;

dex_tester.test_withdraw_liquidity(
Some(deposit_amount),
Expand Down

0 comments on commit 74064d3

Please sign in to comment.