From fb8732ecdffdcdc31ee2cda3bbf40f876e127da0 Mon Sep 17 00:00:00 2001 From: Philipp Cuntz Date: Thu, 23 Apr 2020 23:54:04 +0200 Subject: [PATCH] WIP 24hr data --- main.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.js b/main.js index 59f05bd..f69e1d5 100644 --- a/main.js +++ b/main.js @@ -38,7 +38,7 @@ class Binance extends utils.Adapter { * The main update method */ main() { - //this.requestPrices(); + this.requestPrices(); if (this.config.symbols) this.request24hr(); if (this.config.apiKey && this.config.apiKeySecret) this.requestAccount(); } @@ -59,7 +59,6 @@ class Binance extends utils.Adapter { timeout: 5000 }, (error, response, content) => { - this.log.info(content); if (!error) { if (response.statusCode == 200) { this.log.info('received 24hr data for ' + symbol);