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

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()