From f85ddfe2655db04c1f3b08d0e31bd503b7923d8a Mon Sep 17 00:00:00 2001 From: Potuz Date: Thu, 21 Mar 2024 17:29:23 -0300 Subject: [PATCH] Log the slot and blockroot when we deadline waiting for blobs (#13774) --- beacon-chain/blockchain/process_block.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon-chain/blockchain/process_block.go b/beacon-chain/blockchain/process_block.go index 6e85740ee..34a16e39e 100644 --- a/beacon-chain/blockchain/process_block.go +++ b/beacon-chain/blockchain/process_block.go @@ -586,7 +586,7 @@ func (s *Service) isDataAvailable(ctx context.Context, root [32]byte, signed int s.blobNotifiers.delete(root) return nil 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) } } }