diff --git a/hummingbot/core/gateway/gateway_http_client.py b/hummingbot/core/gateway/gateway_http_client.py index b8ba3791e6..e207f59879 100644 --- a/hummingbot/core/gateway/gateway_http_client.py +++ b/hummingbot/core/gateway/gateway_http_client.py @@ -62,7 +62,7 @@ def __init__(self, client_config_map: Optional["ClientConfigAdapter"] = None): api_host = client_config_map.gateway.gateway_api_host api_port = client_config_map.gateway.gateway_api_port if GatewayHttpClient.__instance is None: - self._base_url = f"https://{api_host}:{api_port}" + self._base_url = f"http://{api_host}:{api_port}" self._client_config_map = client_config_map GatewayHttpClient.__instance = self