We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce53c29 commit a2d7e7aCopy full SHA for a2d7e7a
src/websocket-client.ts
@@ -2124,7 +2124,7 @@ export class WebsocketClient extends BaseWebsocketClient<
2124
market: 'spot' | 'usdm' | 'coinm',
2125
): Promise<unknown> {
2126
const lowerCaseSymbol = symbol.toLowerCase();
2127
- const streamName = market === 'spot' ? 'depth' : 'diffBookDepth';
+ const streamName = 'depth';
2128
2129
const wsKey = resolveWsKeyForLegacyMarket(market);
2130
const updateMsSuffx = typeof updateMs === 'number' ? `@${updateMs}ms` : '';
0 commit comments