Просмотр исходного кода

catalyst: check if block exists in assemble-block call with unknown parent-hash (#22770)

Diederik Loerakker 4 лет назад
Родитель
Сommit
c7d07294a6
1 измененных файлов с 5 добавлено и 0 удалено
  1. 5 0
      eth/catalyst/api.go

+ 5 - 0
eth/catalyst/api.go

@@ -109,6 +109,11 @@ func (api *consensusAPI) AssembleBlock(params assembleBlockParams) (*executableD
 
 	bc := api.eth.BlockChain()
 	parent := bc.GetBlockByHash(params.ParentHash)
+	if parent == nil {
+		log.Warn("Cannot assemble block with parent hash to unknown block", "parentHash", params.ParentHash)
+		return nil, fmt.Errorf("cannot assemble block with unknown parent %s", params.ParentHash)
+	}
+
 	pool := api.eth.TxPool()
 
 	if parent.Time() >= params.Timestamp {