From d3715d3f9cd9d1444d122aed3d4d772156ddbd44 Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Tue, 15 Nov 2022 18:37:17 +0100 Subject: [PATCH] Fix small bug in bfxapi/websocket/BfxWebsocketClient.py. --- bfxapi/websocket/BfxWebsocketClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfxapi/websocket/BfxWebsocketClient.py b/bfxapi/websocket/BfxWebsocketClient.py index 32abb99..026bc74 100644 --- a/bfxapi/websocket/BfxWebsocketClient.py +++ b/bfxapi/websocket/BfxWebsocketClient.py @@ -9,7 +9,7 @@ from .errors import BfxWebsocketException, ConnectionNotOpen, InvalidAuthenticat HEARTBEAT = "hb" class BfxWebsocketClient(object): - VERSION = 1 + VERSION = 2 def __init__(self, host, API_KEY=None, API_SECRET=None): self.host, self.chanIds, self.event_emitter = host, dict(), AsyncIOEventEmitter()