Merge branch 'master' into mainnet-beta

This commit is contained in:
wphan
2024-01-27 12:08:44 -08:00
3 changed files with 10 additions and 6 deletions

View File

@@ -58,13 +58,17 @@ export class DLOBSubscriberIO extends DLOBSubscriber {
this.lastSeenL2Formatted.set(MarketType.PERP, new Map());
for (const market of config.perpMarketInfos) {
let includeVamm = true;
if (market.marketIndex === 17) {
includeVamm = false;
}
this.marketL2Args.push({
marketIndex: market.marketIndex,
marketType: MarketType.PERP,
marketName: market.marketName,
depth: -1,
numVammOrders: 100,
includeVamm: true,
includeVamm,
updateOnChange: true,
fallbackL2Generators: [],
});