This commit is contained in:
Sarlor 2018-09-12 14:10:47 +00:00 committed by GitHub
commit a4537b1651
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -697,7 +697,7 @@ func (bc *BlockChain) procFutureBlocks() {
// Insert one by one as chain insertion needs contiguous ancestry between blocks // Insert one by one as chain insertion needs contiguous ancestry between blocks
for i := range blocks { for i := range blocks {
bc.InsertChain(blocks[i : i+1]) bc.InsertChain(blocks[i])
} }
} }
} }