Closed AlexB1337 closed 6 years ago
The node websocket client used a different nonce scheme - the non-increasing nonce should be fixed now.
I have solved this problem by making changes in createSocket.js Added following code in the createSocket function
wsClient.onreconnect = function() { wsClient.url = makeEndpoint(options); debug('Reconnecting to BitMEX at ', wsClient.url); };
and in ReconnectionSocket.js added the following line in reconnect prototype
this.onreconnect();
this is to be added before this.open(this.url);
Hi all,
I am trying to use Delta Server for streaming the data from my real account. The problem is that I get the "nonce is not increasing" error quite often. I use a separate set of API Keys for Delta Server.
Does anyone have an idea how to solve this issue? Thanks.