From b092bfdf6c3611ff3de637777a3dc02e0d2734fb Mon Sep 17 00:00:00 2001 From: cubedro Date: Mon, 19 Oct 2015 12:48:02 +0300 Subject: [PATCH] made all nodes trusted --- lib/node.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/node.js b/lib/node.js index 3175bc2..2227e39 100644 --- a/lib/node.js +++ b/lib/node.js @@ -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()