removed debug

This commit is contained in:
Maxksim Fomenkov
2022-08-25 13:41:19 +03:00
parent 7eea1cc6f1
commit eaeba385ff

View File

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