From b796965d6af0a86cedbf103fd6e67a38a2861717 Mon Sep 17 00:00:00 2001 From: microwavedcola1 <89031858+microwavedcola1@users.noreply.github.com> Date: Mon, 17 Apr 2023 11:18:50 +0200 Subject: [PATCH] re-enable token rebalance in liquidator (#545) Signed-off-by: microwavedcola1 --- bin/liquidator/src/rebalance.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/liquidator/src/rebalance.rs b/bin/liquidator/src/rebalance.rs index 127028ca1..154c8d232 100644 --- a/bin/liquidator/src/rebalance.rs +++ b/bin/liquidator/src/rebalance.rs @@ -77,9 +77,8 @@ impl Rebalancer { pub async fn zero_all_non_quote(&self) -> anyhow::Result<()> { log::trace!("checking for rebalance: {}", self.mango_account_address); - // FIXME: re-enable when flash loans are back - // self.rebalance_tokens().await?; self.rebalance_perps().await?; + self.rebalance_tokens().await?; Ok(()) }