core/blockchain: Change iterator in procFutureBlocks to use lru.Peek instead of Get (#3655)

pull/3692/head
Martin Holst Swende 8 years ago committed by Jeffrey Wilcke
parent 9b0af51386
commit b19e5885fe
  1. 2
      core/blockchain.go

@ -597,7 +597,7 @@ func (bc *BlockChain) Stop() {
func (self *BlockChain) procFutureBlocks() {
blocks := make([]*types.Block, 0, self.futureBlocks.Len())
for _, hash := range self.futureBlocks.Keys() {
if block, exist := self.futureBlocks.Get(hash); exist {
if block, exist := self.futureBlocks.Peek(hash); exist {
blocks = append(blocks, block.(*types.Block))
}
}

Loading…
Cancel
Save