mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-18 17:10:43 +00:00
core: return error if repair block failed (#18126)
* core: return error if repair block failed * make error a bit shorter
This commit is contained in:
parent
b24ef5e05d
commit
2a113f6d72
1 changed files with 5 additions and 1 deletions
|
|
@ -445,7 +445,11 @@ func (bc *BlockChain) repair(head **types.Block) error {
|
|||
return nil
|
||||
}
|
||||
// Otherwise rewind one block and recheck state availability there
|
||||
(*head) = bc.GetBlock((*head).ParentHash(), (*head).NumberU64()-1)
|
||||
block := bc.GetBlock((*head).ParentHash(), (*head).NumberU64()-1)
|
||||
if block == nil {
|
||||
return fmt.Errorf("missing block %d [%x]", (*head).NumberU64()-1, (*head).ParentHash())
|
||||
}
|
||||
(*head) = block
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue