From 4cb2f4603ad807e0510fe18f298ba219cdfd0efb Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 1 Apr 2020 09:27:24 +1100 Subject: [PATCH] Bugfix: Fixes OKCoin websocket port (#475) --- exchanges/okcoin/okcoin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchanges/okcoin/okcoin.go b/exchanges/okcoin/okcoin.go index fb54fd3d..f42d6924 100644 --- a/exchanges/okcoin/okcoin.go +++ b/exchanges/okcoin/okcoin.go @@ -13,7 +13,7 @@ const ( okCoinAPIURL = "https://www.okcoin.com/" + okCoinAPIPath okCoinAPIVersion = "/v3/" okCoinExchangeName = "OKCOIN International" - okCoinWebsocketURL = "wss://real.okcoin.com:10442/ws/v3" + okCoinWebsocketURL = "wss://real.okcoin.com:8443/ws/v3" ) // OKCoin bases all methods off okgroup implementation