From dc17b8f54ae7b47871499fffe26bd20ca62c0925 Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Fri, 3 Mar 2023 20:14:51 +0100 Subject: [PATCH] Remove STAGING_REST_HOST and STAGING_WSS_HOST urls from bfxapi/urls.py. --- bfxapi/__init__.py | 4 ++-- bfxapi/urls.py | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/bfxapi/__init__.py b/bfxapi/__init__.py index 4fbdfd6..2cd5ce6 100644 --- a/bfxapi/__init__.py +++ b/bfxapi/__init__.py @@ -1,6 +1,6 @@ from .client import Client -from .urls import REST_HOST, PUB_REST_HOST, STAGING_REST_HOST, \ - WSS_HOST, PUB_WSS_HOST, STAGING_WSS_HOST +from .urls import REST_HOST, PUB_REST_HOST, \ + WSS_HOST, PUB_WSS_HOST NAME = "bfxapi" \ No newline at end of file diff --git a/bfxapi/urls.py b/bfxapi/urls.py index c9a622b..de31a04 100644 --- a/bfxapi/urls.py +++ b/bfxapi/urls.py @@ -1,7 +1,5 @@ REST_HOST = "https://api.bitfinex.com/v2" PUB_REST_HOST = "https://api-pub.bitfinex.com/v2" -STAGING_REST_HOST = "https://api.staging.bitfinex.com/v2" WSS_HOST = "wss://api.bitfinex.com/ws/2" -PUB_WSS_HOST = "wss://api-pub.bitfinex.com/ws/2" -STAGING_WSS_HOST = "wss://api.staging.bitfinex.com/ws/2" \ No newline at end of file +PUB_WSS_HOST = "wss://api-pub.bitfinex.com/ws/2" \ No newline at end of file