Merge pull request #281 from cubedro/develop

made all nodes trusted
This commit is contained in:
Marian OANCΞA 2015-10-19 12:48:12 +03:00
commit 0291a3ba2f
1 changed files with 2 additions and 1 deletions

View File

@ -369,7 +369,8 @@ Node.prototype.getBlockNumber = function()
Node.prototype.canUpdate = function()
{
return (this.info.canUpdateHistory && this.trusted) || false;
// return (this.info.canUpdateHistory && this.trusted) || false;
return (this.info.canUpdateHistory) || false;
}
Node.prototype.isInactiveAndOld = function()