only include enabled spot market fulfilments

This commit is contained in:
wphan
2023-12-01 09:13:31 -08:00
parent 8a52e7e7b1
commit 5a04b672ce

View File

@@ -147,23 +147,32 @@ const initializeAllMarketSubscribers = async (driftClient: DriftClient) => {
}; };
if (market.phoenixMarket) { if (market.phoenixMarket) {
const phoenixSubscriber = getPhoenixSubscriber( const phoenixConfigAccount =
driftClient, await driftClient.getPhoenixV1FulfillmentConfig(market.phoenixMarket);
market, if (isVariant(phoenixConfigAccount.status, 'enabled')) {
sdkConfig const phoenixSubscriber = getPhoenixSubscriber(
); driftClient,
await phoenixSubscriber.subscribe(); market,
markets[market.marketIndex].phoenix = phoenixSubscriber; sdkConfig
);
await phoenixSubscriber.subscribe();
markets[market.marketIndex].phoenix = phoenixSubscriber;
}
} }
if (market.serumMarket) { if (market.serumMarket) {
const serumSubscriber = getSerumSubscriber( const serumConfigAccount = await driftClient.getSerumV3FulfillmentConfig(
driftClient, market.serumMarket
market,
sdkConfig
); );
await serumSubscriber.subscribe(); if (isVariant(serumConfigAccount.status, 'enabled')) {
markets[market.marketIndex].serum = serumSubscriber; const serumSubscriber = getSerumSubscriber(
driftClient,
market,
sdkConfig
);
await serumSubscriber.subscribe();
markets[market.marketIndex].serum = serumSubscriber;
}
} }
} }