Merge pull request #280 from cubedro/develop

removed trusted node check for history update
This commit is contained in:
Marian OANCΞA 2015-10-19 12:42:26 +03:00
commit afafc7143a
1 changed files with 2 additions and 1 deletions

View File

@ -288,7 +288,8 @@ Collection.prototype.getHistory = function()
Collection.prototype.getBestBlockFromItems = function()
{
return Math.max(this._blockchain.bestBlockNumber(), _.result(_.max(this._items, function(item) {
return ( !item.trusted ? 0 : item.stats.block.number );
// return ( !item.trusted ? 0 : item.stats.block.number );
return ( item.stats.block.number );
}), 'stats.block.number', 0));
}