consensus/ethash: less lookups of block data

parent b68929ca
...@@ -204,15 +204,23 @@ func (ethash *Ethash) VerifyUncles(chain consensus.ChainReader, block *types.Blo ...@@ -204,15 +204,23 @@ func (ethash *Ethash) VerifyUncles(chain consensus.ChainReader, block *types.Blo
number, parent := block.NumberU64()-1, block.ParentHash() number, parent := block.NumberU64()-1, block.ParentHash()
for i := 0; i < 7; i++ { for i := 0; i < 7; i++ {
ancestor := chain.GetBlock(parent, number) ancestorHeader := chain.GetHeader(parent, number)
if ancestor == nil { if ancestorHeader == nil {
break break
} }
ancestors[ancestor.Hash()] = ancestor.Header() ancestors[parent] = ancestorHeader
for _, uncle := range ancestor.Uncles() { // If the ancestor doesn't have any uncles, we don't have to iterate them
uncles.Add(uncle.Hash()) if ancestorHeader.UncleHash != types.EmptyUncleHash {
// Need to add those uncles to the blacklist too
ancestor := chain.GetBlock(parent, number)
if ancestor == nil {
break
}
for _, uncle := range ancestor.Uncles() {
uncles.Add(uncle.Hash())
}
} }
parent, number = ancestor.ParentHash(), number-1 parent, number = ancestorHeader.ParentHash, number-1
} }
ancestors[block.Hash()] = block.Header() ancestors[block.Hash()] = block.Header()
uncles.Add(block.Hash()) uncles.Add(block.Hash())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment