Log the slot and blockroot when we deadline waiting for blobs (#13774)

This commit is contained in:
Potuz 2024-03-21 17:29:23 -03:00 committed by GitHub
parent 3b97094ea4
commit f85ddfe265
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -586,7 +586,7 @@ func (s *Service) isDataAvailable(ctx context.Context, root [32]byte, signed int
s.blobNotifiers.delete(root) s.blobNotifiers.delete(root)
return nil return nil
case <-ctx.Done(): case <-ctx.Done():
return errors.Wrap(ctx.Err(), "context deadline waiting for blob sidecars") return errors.Wrapf(ctx.Err(), "context deadline waiting for blob sidecars slot: %d, BlockRoot: %#x", block.Slot(), root)
} }
} }
} }