Skip to content

Commit

Permalink
Log the slot and blockroot when we deadline waiting for blobs (#13774)
Browse files Browse the repository at this point in the history
  • Loading branch information
potuz committed Mar 21, 2024
1 parent 3b97094 commit f85ddfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon-chain/blockchain/process_block.go
Expand Up @@ -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)
}
}
}
Expand Down

0 comments on commit f85ddfe

Please sign in to comment.