From 9856e82f0314654a5740b46ab50181ac137e788b Mon Sep 17 00:00:00 2001 From: Alberto Date: Mon, 3 Jun 2024 14:02:34 +0200 Subject: [PATCH] test: making withdrawal more restricted --- tests/unitary/pool/stateful/test_stateful.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unitary/pool/stateful/test_stateful.py b/tests/unitary/pool/stateful/test_stateful.py index 430b9f5..48b244e 100644 --- a/tests/unitary/pool/stateful/test_stateful.py +++ b/tests/unitary/pool/stateful/test_stateful.py @@ -234,7 +234,7 @@ def remove_liquidity_one_coin_rule(self, data, coin_idx: int): depositor_ratio = depositor_balance / lp_supply # TODO check these two conditions - max_withdraw = 0.5 if depositor_ratio > 0.25 else 1 + max_withdraw = 0.3 if depositor_ratio > 0.25 else 1 min_withdraw = 0.1 if depositor_balance >= 1e13 else 0.01