fixed styling

This commit is contained in:
cubedro
2015-08-06 13:54:10 +03:00
parent 95ce5488f1
commit 409af3720e
4 changed files with 80 additions and 88 deletions

View File

@@ -440,10 +440,10 @@ History.prototype.getGasLimit = function()
{
var gasLimitHistory = _( this._items )
.sortByOrder( 'height', false )
.filter(function (item)
{
return item.block.trusted;
})
// .filter(function (item)
// {
// return item.block.trusted;
// })
.slice(0, MAX_BINS)
.reverse()
.map(function (item)
@@ -559,7 +559,7 @@ History.prototype.getMinersCount = function()
return _(minerCount)
.sortByOrder( 'blocks', false )
.slice(0, 5)
.slice(0, 2)
.value();
}