mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 19:50:36 +00:00
Senders: nil check (#6717)
This commit is contained in:
parent
638403e54a
commit
d908f57528
@ -232,6 +232,10 @@ Loop:
|
||||
}
|
||||
|
||||
body := rawdb.ReadCanonicalBodyWithTransactions(tx, blockHash, blockNumber)
|
||||
if body == nil {
|
||||
log.Warn(fmt.Sprintf("[%s] ReadCanonicalBodyWithTransactions can't find block", logPrefix), "num", blockNumber, "hash", blockHash)
|
||||
continue
|
||||
}
|
||||
|
||||
select {
|
||||
case recoveryErr := <-errCh:
|
||||
|
Loading…
Reference in New Issue
Block a user