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
3ef538502f
commit
284b63d7a1
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
|
index[hash] = i
|
||||||
}
|
}
|
||||||
for i, sidecar := range sidecars {
|
for i, sidecar := range sidecars {
|
||||||
if res[i] != nil && sidecar == nil {
|
if res[i] != nil || sidecar == nil {
|
||||||
// already filled
|
// already filled
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue