diff --git a/src/bots/liquidator.ts b/src/bots/liquidator.ts index 14c38f1c..084c296c 100644 --- a/src/bots/liquidator.ts +++ b/src/bots/liquidator.ts @@ -2390,6 +2390,11 @@ export class LiquidatorBot implements Bot { subAccountToLiqPerp: number, baseAmountToLiquidate: BN ): Promise { + // TODO: remove this once the markets are settled properly + if ([37, 49].includes(perpMarketIndex)) { + return false; + } + let txSent = false; const ix = await this.driftClient.getLiquidatePerpIx( user.userAccountPublicKey,