@icgio/icg-exchanges-wrapper 1.9.109 → 1.9.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/middleware/orders.js +2 -2
- package/package.json +4 -4
package/middleware/orders.js
CHANGED
|
@@ -1119,10 +1119,10 @@ module.exports = class Orders {
|
|
|
1119
1119
|
if (ExchangesRatesOnly[exchange].ws_market) {
|
|
1120
1120
|
setInterval(() => {
|
|
1121
1121
|
if (!this.ws_market_first_time[exchange]) {
|
|
1122
|
-
ExchangesRatesOnly[exchange].ws_market(
|
|
1122
|
+
ExchangesRatesOnly[exchange].ws_market(exchange_pairs_rates_only[exchange])
|
|
1123
1123
|
this.ws_market_first_time[exchange] = true
|
|
1124
1124
|
} else {
|
|
1125
|
-
for (let pair of
|
|
1125
|
+
for (let pair of exchange_pairs_rates_only[exchange]) {
|
|
1126
1126
|
ExchangesRatesOnly[exchange].rate_ws(pair, (res) => {
|
|
1127
1127
|
rates_handler(exchange, pair, res)
|
|
1128
1128
|
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@icgio/icg-exchanges-wrapper",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.111",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/icgio/icg-exchanges-wrapper#readme",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@icgio/icg-exchanges": "^1.27.
|
|
21
|
-
"@icgio/icg-exchanges-data": "^1.6.
|
|
22
|
-
"@icgio/icg-utils": "^1.7.
|
|
20
|
+
"@icgio/icg-exchanges": "^1.27.88",
|
|
21
|
+
"@icgio/icg-exchanges-data": "^1.6.43",
|
|
22
|
+
"@icgio/icg-utils": "^1.7.19",
|
|
23
23
|
"influx": "^5.7.0",
|
|
24
24
|
"lodash": "^4.17.20",
|
|
25
25
|
"uuid": "^8.3.2",
|