Skip to content

Commit

Permalink
apply suggestions
Browse files Browse the repository at this point in the history
Co-authored-by: Hlib Kanunnikov <[email protected]>
  • Loading branch information
vgonkivs and Wondertan authored Oct 13, 2023
1 parent b0ce766 commit 0a5747a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blob/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ func (s *Service) getByCommitment(

err = ErrBlobNotFound
if len(rawShares) > 0 {
reportErr := fmt.Errorf("THIS IS A BUG: INCOMPLETE BLOB DETECTED at: %d height", height)
err = fmt.Errorf("incomplete blob detected at %d: %w", height, err)
err = errors.Join(err, reportErr)
log.Error(err)
}
Expand Down

0 comments on commit 0a5747a

Please sign in to comment.