From 4d3e9b7d00c5122ebc06e78a108344e7d6ab26e7 Mon Sep 17 00:00:00 2001 From: Nick Caradonna Date: Wed, 19 Feb 2025 13:20:07 -0500 Subject: [PATCH] bump staleness threshold for excluding vamm orders --- 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 2465908..99a2332 100644 --- a/src/dlob-subscriber/DLOBSubscriberIO.ts +++ b/src/dlob-subscriber/DLOBSubscriberIO.ts @@ -35,7 +35,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 = 80; +const STALE_ORACLE_REMOVE_VAMM_THRESHOLD = 160; const PERP_MARKETS_TO_SKIP_SLOT_CHECK = process.env.PERP_MARKETS_TO_SKIP_SLOT_CHECK !== undefined