@icgio/icg-exchanges-wrapper 1.9.118 → 1.9.119

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.
@@ -1180,7 +1180,11 @@ module.exports = class Orders {
1180
1180
  }
1181
1181
  }
1182
1182
  let rates_handler = (exchange, pair, res) => {
1183
- if (res.success) {
1183
+ if (exchange === 'coinsbit' && pair === 'PRMXUSDT') {
1184
+ if (_.get(this.rates, ['kucoin', 'PRMXUSDT'])) {
1185
+ _.set(this.rates, ['coinsbit', 'PRMXUSDT'], Object.assign(_.get(this.rates, ['kucoin', 'PRMXUSDT']), { update_time: new Date() }))
1186
+ }
1187
+ } else if (res.success) {
1184
1188
  res.body.asks = res.body.asks.slice(0, RATES_LENGTH_MAX)
1185
1189
  res.body.bids = res.body.bids.slice(0, RATES_LENGTH_MAX)
1186
1190
  _.set(this.rates, [exchange, pair], Object.assign(res.body, { update_time: new Date() }))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icgio/icg-exchanges-wrapper",
3
- "version": "1.9.118",
3
+ "version": "1.9.119",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {