diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-22 23:10:18 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-22 23:10:18 +0800 |
commit | 56103f07517fe32522e510213c02ea982dfcef42 (patch) | |
tree | 1e3277bb58a497b0a7dc85dfba0200ba40ed9c3d /block_pool.go | |
parent | be9bfb5536c7410bdd9cb3fbd13fb622bfc00a57 (diff) | |
download | dexon-56103f07517fe32522e510213c02ea982dfcef42.tar.gz dexon-56103f07517fe32522e510213c02ea982dfcef42.tar.zst dexon-56103f07517fe32522e510213c02ea982dfcef42.zip |
Log
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} |