diff options
Diffstat (limited to 'block_pool.go')
-rw-r--r-- | block_pool.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/block_pool.go b/block_pool.go index e3f0f6ff0..25627eb5c 100644 --- a/block_pool.go +++ b/block_pool.go @@ -1,7 +1,6 @@ package eth import ( - "fmt" "math" "math/big" "sync" @@ -52,7 +51,6 @@ func (self *BlockPool) AddHash(hash []byte) { func (self *BlockPool) SetBlock(b *ethchain.Block, peer *Peer) { hash := string(b.Hash()) - fmt.Printf("::SetBlock %x\n", hash) if self.pool[hash] == nil { self.pool[hash] = &block{peer, nil} |