aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect/src/orderbook_channel_factory.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/connect/src/orderbook_channel_factory.ts')
-rw-r--r--packages/connect/src/orderbook_channel_factory.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/connect/src/orderbook_channel_factory.ts b/packages/connect/src/orderbook_channel_factory.ts
index 4b363365f..1b5625840 100644
--- a/packages/connect/src/orderbook_channel_factory.ts
+++ b/packages/connect/src/orderbook_channel_factory.ts
@@ -1,13 +1,13 @@
import * as WebSocket from 'websocket';
-import { OrderbookChannel, WebsocketClientEventType } from './types';
+import { OrderbookChannel } from './types';
import { assert } from './utils/assert';
import { WebSocketOrderbookChannel } from './ws_orderbook_channel';
export const orderbookChannelFactory = {
/**
* Instantiates a new WebSocketOrderbookChannel instance
- * @param url The relayer API base WS url you would like to interact with
+ * @param url The relayer API base WS url you would like to interact with
* @return An OrderbookChannel Promise
*/
async createWebSocketOrderbookChannelAsync(url: string): Promise<OrderbookChannel> {