From fc5b04c15953876cfce4a27be04442250dbe36f3 Mon Sep 17 00:00:00 2001 From: MEUNIER Thibaud Date: Sat, 31 Aug 2019 14:42:05 +0200 Subject: [PATCH] =?UTF-8?q?correction=20sur=20le=20hack=20=C3=A0=20true=20?= =?UTF-8?q?dans=20isblocknew?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/lastblock.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/lastblock.js b/js/lastblock.js index af0b694..e33fa29 100644 --- a/js/lastblock.js +++ b/js/lastblock.js @@ -17,7 +17,6 @@ blockchainListener = function(){ function _isBlockNew(leblock) { - return true; return ((_last_block == null)||(_last_block.hash != leblock.hash)); };