mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
eth/catalyst: don't panic
This commit is contained in:
parent
f31ad09c57
commit
f98287a0ba
1 changed files with 1 additions and 1 deletions
|
|
@ -571,7 +571,7 @@ func (api *ConsensusAPI) GetBlobsV1(hashes []common.Hash) ([]*engine.BlobAndProo
|
|||
index[hash] = i
|
||||
}
|
||||
for i, sidecar := range sidecars {
|
||||
if res[i] != nil && sidecar == nil {
|
||||
if res[i] != nil || sidecar == nil {
|
||||
// already filled
|
||||
continue
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue