diff --git a/www/js/services/tx-services.js b/www/js/services/tx-services.js index 1fc5dcccc9a96ff9eb1226fd0480a5642d38bfe5..88e1ee4a5e183dc98ddf99bf23cb17854b837bf3 100644 --- a/www/js/services/tx-services.js +++ b/www/js/services/tx-services.js @@ -154,7 +154,6 @@ angular.module('cesium.tx.services', ['ngApi', 'cesium.bma.services', // get TX history since if (fromTime !== 'pending') { - console.info('[tx] Preparing download slices...'); var slices = []; // Fill slices: {params, cache}[] { @@ -167,6 +166,9 @@ angular.module('cesium.tx.services', ['ngApi', 'cesium.bma.services', slices.push({params: {pubkey: pubkey, from: i, to: nowInSec+999999999}, cache: false/*no cache for the last slice*/}); } + // DEBUG + // console.debug('[tx] Loading TX using slices: ', slices); + var reduceTxFn = function (res) { reduceTxAndPush(pubkey, res.history.sent, tx.history, processedTxMap, false); reduceTxAndPush(pubkey, res.history.received, tx.history, processedTxMap, false);