From fa6ec4e718548aa2af493ba65d69a73814fae857 Mon Sep 17 00:00:00 2001 From: Dario Moceri <31732142+itsdeka@users.noreply.github.com> Date: Fri, 23 Apr 2021 13:23:05 +0200 Subject: [PATCH] Added missing error to ERRORS (#136) * Added missing error to ERRORS * bump version --- CHANGELOG | 3 +++ bfxapi/version.py | 2 +- bfxapi/websockets/bfx_websocket.py | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 35ca6cf..a4db05e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +1.1.14 +-) bfx_websockets.py ERRORS dictionary now contains a message for error number 10305 + 1.1.13 -) Adding balance_available to the Wallet. diff --git a/bfxapi/version.py b/bfxapi/version.py index 7e55b74..33ea9de 100644 --- a/bfxapi/version.py +++ b/bfxapi/version.py @@ -2,4 +2,4 @@ This module contains the current version of the bfxapi lib """ -__version__ = '1.1.13' +__version__ = '1.1.14' diff --git a/bfxapi/websockets/bfx_websocket.py b/bfxapi/websockets/bfx_websocket.py index cad67fc..0c3ff80 100644 --- a/bfxapi/websockets/bfx_websocket.py +++ b/bfxapi/websockets/bfx_websocket.py @@ -96,6 +96,7 @@ ERRORS = { 10200: 'Error in un-authentication request', 10300: 'Subscription Failed (generic)', 10301: 'Already Subscribed', + 10305: 'Reached limit of open channels', 10302: 'Unknown channel', 10400: 'Subscription Failed (generic)', 10401: 'Not subscribed',