From a2d713137c77383375e1b4fffc858587f5361b31 Mon Sep 17 00:00:00 2001 From: greg Date: Sun, 15 Apr 2018 16:29:22 -0400 Subject: [PATCH] Removed logs --- core/database_util.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/core/database_util.go b/core/database_util.go index 6c5980062b..18a1e3ff57 100644 --- a/core/database_util.go +++ b/core/database_util.go @@ -447,14 +447,6 @@ func WriteTd(db ethdb.Putter, hash common.Hash, number uint64, td *big.Int) erro // WriteBlock serializes a block into the database, header and body separately. func WriteBlock(db ethdb.Putter, block *types.Block) error { - // Store the body first to retain database consistency - fmt.Println("\t\t ~~~~~BLOCK~~~~~") - fmt.Println(block.Transactions()) - if block.Transactions().Len() > 0 { - for _, tx := range block.Transactions() { - fmt.Println(tx.To().Hex()) - } - } if err := WriteBody(db, block.Hash(), block.NumberU64(), block.Body()); err != nil { return err }