Merge pull request #282 from cubedro/develop

fixed history sync bug
This commit is contained in:
Marian OANCΞA 2015-10-28 23:00:26 +02:00
commit 6b752f84f3
2 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ Collection.prototype.update = function(id, stats, callback)
}
else
{
this._blockchain.clean(this.getBestBlockFromItems());
// this._blockchain.clean(this.getBestBlockFromItems());
var block = this._blockchain.add(stats.block, id, node.trusted);
@ -75,7 +75,7 @@ Collection.prototype.addBlock = function(id, stats, callback)
}
else
{
this._blockchain.clean(this.getBestBlockFromItems());
// this._blockchain.clean(this.getBestBlockFromItems());
var block = this._blockchain.add(stats, id, node.trusted);
@ -142,7 +142,7 @@ Collection.prototype.addHistory = function(id, blocks, callback)
{
blocks = blocks.reverse();
this._blockchain.clean(this.getBestBlockFromItems());
// this._blockchain.clean(this.getBestBlockFromItems());
for (var i = 0; i <= blocks.length - 1; i++)
{

View File

@ -639,7 +639,7 @@ History.prototype.requiresUpdate = function()
History.prototype.getHistoryRequestRange = function()
{
if( _.isEmpty(this._items) )
if( this._items.length < 5 )
return false;
var blocks = _.pluck( this._items, 'height' );