From a9bdf07cfa0e5406d6a02cae87c052260652b515 Mon Sep 17 00:00:00 2001 From: Jack Waller Date: Tue, 10 Jun 2025 17:09:08 +1000 Subject: [PATCH] chore: remove testing --- src/publishers/dlobPublisher.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/publishers/dlobPublisher.ts b/src/publishers/dlobPublisher.ts index 694b457..d444350 100644 --- a/src/publishers/dlobPublisher.ts +++ b/src/publishers/dlobPublisher.ts @@ -115,7 +115,10 @@ const KILLSWITCH_SLOT_DIFF_THRESHOLD = parseInt(process.env.KILLSWITCH_SLOT_DIFF_THRESHOLD) || 200; // comma separated list of perp market indexes to load: i.e. 0,1,2,3 -const PERP_MARKETS_TO_LOAD = [0] +const PERP_MARKETS_TO_LOAD = + process.env.PERP_MARKETS_TO_LOAD !== undefined + ? parsePositiveIntArray(process.env.PERP_MARKETS_TO_LOAD) + : undefined; // comma separated list of spot market indexes to load: i.e. 0,1,2,3 const SPOT_MARKETS_TO_LOAD =