From f9fd110ebcbb55f2668bd81851741e203e7d8f8f Mon Sep 17 00:00:00 2001 From: Nour Alharithi Date: Wed, 7 Aug 2024 09:46:15 -0700 Subject: [PATCH] change vamm threshold from 10 to 100 --- 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 f278a9a..f59ff4b 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 = 100; +const STALE_ORACLE_REMOVE_VAMM_THRESHOLD = 10; const PERP_MARKETS_TO_SKIP_SLOT_CHECK = process.env.PERP_MARKETS_TO_SKIP_SLOT_CHECK !== undefined