Skip to content

Commit

Permalink
better error annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Aug 29, 2024
1 parent 47f14ae commit c405d69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blssig/aggregation.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func (v *Verifier) Aggregate(pubkeys []gpbft.PubKey) (_agg gpbft.Aggregate, _err
}
cmask, err := bdn.NewCachedMask(mask)
if err != nil {
return nil, fmt.Errorf("creating key mask: %w", err)
return nil, fmt.Errorf("creating cached bdn mask: %w", err)
}
return &aggregation{
mask: cmask,
Expand Down

0 comments on commit c405d69

Please sign in to comment.