Merge pull request #282 from cubedro/develop

fixed history sync bug
pull/5/head
Marian OANCΞA 9 years ago
commit 6b752f84f3
  1. 6
      lib/collection.js
  2. 2
      lib/history.js

@ -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++)
{

@ -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' );

Loading…
Cancel
Save