add block header debug/pretty print

This commit is contained in:
jangko 2022-03-21 16:19:19 +07:00
parent 32915fde46
commit cf0cc531c3
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
1 changed files with 37 additions and 0 deletions

37
nimbus/debug.nim Normal file
View File

@ -0,0 +1,37 @@
import
std/[options, times],
eth/common,
stew/byteutils
proc `$`(hash: Hash256): string =
hash.data.toHex
proc `$`(address: openArray[byte]): string =
address.toHex
proc `$`(bloom: BloomFilter): string =
bloom.toHex
proc `$`(nonce: BlockNonce): string =
nonce.toHex
proc debug*(h: BlockHeader): string =
result.add "parentHash : " & $h.parentHash & "\n"
result.add "ommersHash : " & $h.ommersHash & "\n"
result.add "coinbase : " & $h.coinbase & "\n"
result.add "stateRoot : " & $h.stateRoot & "\n"
result.add "txRoot : " & $h.txRoot & "\n"
result.add "receiptRoot: " & $h.receiptRoot & "\n"
result.add "bloom : " & $h.bloom & "\n"
result.add "difficulty : " & $h.difficulty & "\n"
result.add "blockNumber: " & $h.blockNumber & "\n"
result.add "gasLimit : " & $h.gasLimit & "\n"
result.add "gasUsed : " & $h.gasUsed & "\n"
result.add "timestamp : " & $h.timestamp.toUnix & "\n"
result.add "extraData : " & $h.extraData & "\n"
result.add "mixDigest : " & $h.mixDigest & "\n"
result.add "nonce : " & $h.nonce & "\n"
result.add "fee.isSome : " & $h.fee.isSome & "\n"
if h.fee.isSome:
result.add "fee : " & $h.fee.get() & "\n"
result.add "blockHash : " & $blockHash(h) & "\n"