fixed transaction count

This commit is contained in:
cubedro 2015-04-28 04:02:12 +03:00
parent ad1913d63a
commit 30c8c510e2

View File

@ -188,7 +188,7 @@ History.prototype.getUncleCount = function(id)
History.prototype.getTransactionsCount = function(id) History.prototype.getTransactionsCount = function(id)
{ {
var uncles = _(this._items) var txCount = _(this._items)
.sortByOrder('height', false) .sortByOrder('height', false)
.slice(0, MAX_BINS - 1) .slice(0, MAX_BINS - 1)
.reverse() .reverse()
@ -198,16 +198,7 @@ History.prototype.getTransactionsCount = function(id)
}) })
.value(); .value();
var uncleBins = _.fill(Array(MAX_BINS), 0); return txCount;
var sumMapper = function(array, key) {
uncleBins[key] = _.sum(array);
return _.sum(array);
};
_.map(_.chunk(uncles, MAX_UNCLES_PER_BIN), sumMapper);
return uncleBins;
} }
History.prototype.history = function() History.prototype.history = function()