diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-05-30 01:37:35 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-07-12 01:19:36 +0800 |
commit | cab6829df9063c698f91d2fb03bdbd81999843d1 (patch) | |
tree | 2ec22a7cc5a564e7be7c5741c59e653471e5e5ce /packages/connect | |
parent | 0efe6df416de83fe508245326ab69ad3d37ee510 (diff) | |
download | dexon-sol-tools-cab6829df9063c698f91d2fb03bdbd81999843d1.tar dexon-sol-tools-cab6829df9063c698f91d2fb03bdbd81999843d1.tar.gz dexon-sol-tools-cab6829df9063c698f91d2fb03bdbd81999843d1.tar.bz2 dexon-sol-tools-cab6829df9063c698f91d2fb03bdbd81999843d1.tar.lz dexon-sol-tools-cab6829df9063c698f91d2fb03bdbd81999843d1.tar.xz dexon-sol-tools-cab6829df9063c698f91d2fb03bdbd81999843d1.tar.zst dexon-sol-tools-cab6829df9063c698f91d2fb03bdbd81999843d1.zip |
Remove unused import
Diffstat (limited to 'packages/connect')
-rw-r--r-- | packages/connect/src/orderbook_channel_factory.ts | 4 |
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> { |