made all nodes trusted

This commit is contained in:
cubedro 2015-10-19 12:48:02 +03:00
parent a0c3bc238b
commit b092bfdf6c
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()