core: fix #1154, sort out data race accessing the future blocks

pull/1155/head
Péter Szilágyi 9 years ago
parent 9f467c387a
commit b7fc85d68e
  1. 4
      core/chain_manager.go

@ -522,9 +522,9 @@ type queueEvent struct {
}
func (self *ChainManager) procFutureBlocks() {
blocks := make([]*types.Block, len(self.futureBlocks.blocks))
blocks := []*types.Block{}
self.futureBlocks.Each(func(i int, block *types.Block) {
blocks[i] = block
blocks = append(blocks, block)
})
types.BlockBy(types.Number).Sort(blocks)

Loading…
Cancel
Save