From 6288370bcf577f54d932b667d08cf6dc17b90d5e Mon Sep 17 00:00:00 2001 From: Nour Alharithi Date: Wed, 7 Aug 2024 11:07:13 -0700 Subject: [PATCH] move slot threshold back to 80 --- src/dlob-subscriber/DLOBSubscriberIO.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dlob-subscriber/DLOBSubscriberIO.ts b/src/dlob-subscriber/DLOBSubscriberIO.ts index f59ea2f..cfd1870 100644 --- a/src/dlob-subscriber/DLOBSubscriberIO.ts +++ b/src/dlob-subscriber/DLOBSubscriberIO.ts @@ -33,7 +33,7 @@ require('dotenv').config(); const PERP_MAKRET_STALENESS_THRESHOLD = 30 * 60 * 1000; const SPOT_MAKRET_STALENESS_THRESHOLD = 60 * 60 * 1000; -const STALE_ORACLE_REMOVE_VAMM_THRESHOLD = 10; +const STALE_ORACLE_REMOVE_VAMM_THRESHOLD = 80; const PERP_MARKETS_TO_SKIP_SLOT_CHECK = process.env.PERP_MARKETS_TO_SKIP_SLOT_CHECK !== undefined