diff --git a/ethereum.go b/ethereum.go
index 530cbd5c1eaf3607cd169c81c95410caa355957d..78f08c15e1d1624241fc6a66f329198773f5e931 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())
 }