diff --git a/eth/handler.go b/eth/handler.go
index effe25ae372c17839a9eb4865672d59b58855022..1dbc62cce4dcfc76ede80a4334ba13cac0d50685 100644
--- a/eth/handler.go
+++ b/eth/handler.go
@@ -291,7 +291,7 @@ func (self *ProtocolManager) handleMsg(p *peer) error {
 				return nil
 			}
 			self.BroadcastBlock(hash, request.Block)
-			fmt.Println(request.Block.Hash().Hex(), "our calculated TD =", request.Block.Td, "their TD =", request.TD)
+			//fmt.Println(request.Block.Hash().Hex(), "our calculated TD =", request.Block.Td, "their TD =", request.TD)
 		} else {
 			// adding blocks is synchronous
 			go func() {
@@ -301,7 +301,7 @@ func (self *ProtocolManager) handleMsg(p *peer) error {
 					return
 				}
 				self.BroadcastBlock(hash, request.Block)
-				fmt.Println(request.Block.Hash().Hex(), "our calculated TD =", request.Block.Td, "their TD =", request.TD)
+				//fmt.Println(request.Block.Hash().Hex(), "our calculated TD =", request.Block.Td, "their TD =", request.TD)
 			}()
 		}
 	default: