From f554986dfed4b3cdf11520ccae9216202235e1be Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Thu, 5 Jun 2014 18:18:16 -0300 Subject: [PATCH] fix dbg msg --- js/models/blockchain/Insight.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/blockchain/Insight.js b/js/models/blockchain/Insight.js index 7d6049ff7..87ade00c8 100644 --- a/js/models/blockchain/Insight.js +++ b/js/models/blockchain/Insight.js @@ -182,7 +182,7 @@ Insight.prototype._request = function(options, callback) { request.open(options.method, url, true); request.timeout = 5000; request.ontimeout = function() { - console.log('Insight timeout...retrying', err, self.retryDelay); //TODO + console.log('Insight timeout...retrying'); setTimeout(function() { return self._request(options,callback); }, self.retryDelay);