add it to the list

poc8
obscuren 10 years ago
parent 86d1a26b13
commit 74ef22d824
  1. 1
      block_pool.go
  2. 1
      peer.go

@ -53,6 +53,7 @@ func (self *BlockPool) SetBlock(b *ethchain.Block, peer *Peer) {
hash := string(b.Hash())
if self.pool[hash] == nil {
self.hashPool = append(self.hashPool, b.Hash())
self.pool[hash] = &block{peer, nil}
}

@ -486,7 +486,6 @@ func (p *Peer) HandleInbound() {
blockPool := p.ethereum.blockPool
it := msg.Data.NewIterator()
for it.Next() {
block := ethchain.NewBlockFromRlpValue(it.Value())

Loading…
Cancel
Save