From 5a776d76a44152f99cb6e32693ce05097c41750f Mon Sep 17 00:00:00 2001 From: Chepelau Date: Sun, 10 Dec 2023 14:28:57 +0100 Subject: [PATCH] Run scarb fmt --- src/amm_core/liquidity_pool.cairo | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/amm_core/liquidity_pool.cairo b/src/amm_core/liquidity_pool.cairo index 47762b2..8891bca 100644 --- a/src/amm_core/liquidity_pool.cairo +++ b/src/amm_core/liquidity_pool.cairo @@ -143,7 +143,6 @@ mod LiquidityPool { let mut pool_pos: Fixed = FixedTrait::from_felt(0); loop { - // Get option stored under given index let option = get_available_options(lptoken_address, ix); assert(option.sum() != 0, 'GVoEO - opt sum zero'); @@ -161,7 +160,7 @@ mod LiquidityPool { // We're not at the end (beginning) of array // so decrease index and continue ix -= 1; - continue; + continue; }; if (now - option.maturity) > LOOKBACK {