From eaeba385ffd27e84cdd1ec81a9b30ea1632bb004 Mon Sep 17 00:00:00 2001 From: Maxksim Fomenkov Date: Thu, 25 Aug 2022 13:41:19 +0300 Subject: [PATCH] removed debug --- .../dshackle/upstream/ethereum/EthereumBlockValidator.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumBlockValidator.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumBlockValidator.kt index d98ddf4b..25a84293 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumBlockValidator.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumBlockValidator.kt @@ -46,7 +46,6 @@ class EthereumBlockValidator : BlockValidator { override fun isValid(currentHead: BlockContainer?, newHead: BlockContainer): Boolean = newHead.json?.let { - println(String(it)) val validBlocksSequence = currentHead?.let { cur -> validateTotalDifficulty(cur, newHead) } ?: true val node = Global.objectMapper.readTree(it) val rlpEncoded = rlp(node)