diff options
Diffstat (limited to 'ethereum.go')
-rw-r--r-- | ethereum.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ethereum.go b/ethereum.go index 530cbd5c1..78f08c15e 100644 --- a/ethereum.go +++ b/ethereum.go @@ -29,5 +29,7 @@ func main() { bm.ProcessBlock( blck ) - fmt.Printf("rlp encoded Tx %q\n", tx.Serialize()) + //fmt.Printf("rlp encoded Tx %q\n", tx.MarshalRlp()) + fmt.Printf("block enc %q\n", blck.MarshalRlp()) + fmt.Printf("block hash %q\n", blck.Hash()) } |