Remove STAGING_REST_HOST and STAGING_WSS_HOST urls from bfxapi/urls.py.

This commit is contained in:
Davide Casale
2023-03-03 20:14:51 +01:00
parent 5f2c2e25e9
commit dc17b8f54a
2 changed files with 3 additions and 5 deletions

View File

@@ -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"

View File

@@ -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"
PUB_WSS_HOST = "wss://api-pub.bitfinex.com/ws/2"