diff --git a/package.json b/package.json index 14d3066..d19b27e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@orionprotocol/sdk", - "version": "0.20.80-rc1", + "version": "0.20.80-rc2", "description": "Orion Protocol SDK", "main": "./lib/index.cjs", "module": "./lib/index.js", diff --git a/src/services/Aggregator/ws/index.ts b/src/services/Aggregator/ws/index.ts index ab6f6c5..55c875e 100644 --- a/src/services/Aggregator/ws/index.ts +++ b/src/services/Aggregator/ws/index.ts @@ -263,15 +263,12 @@ class AggregatorWS { const subRequest: Json = {}; subRequest['T'] = type; subRequest['id'] = id; - // test if ('dc' in subscription) { if (typeof subscription.dc === 'number') { subRequest['dc'] = subscription.dc; } } - this.logger?.('test'); - if ('payload' in subscription) { if (typeof subscription.payload === 'string') { subRequest['S'] = subscription.payload;