Skip to content

Commit

Permalink
Update verify/cert.go
Browse files Browse the repository at this point in the history
Co-authored-by: EthenNotEthan <[email protected]>
  • Loading branch information
samlaf and ethenotethan authored Jan 23, 2025
1 parent 9c43884 commit 5674628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verify/cert.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ func getQuorumParametersAtLatestBlock(
return nil, nil, fmt.Errorf("failed to fetch QuorumAdversaryThresholdPercentages from EigenDAServiceManager: %w", err)
}
if len(thresholds) > math.MaxUint8 {
return nil, nil, fmt.Errorf("thresholds received from ServiceManager contains %d > 256 quorums, which isn't possible", len(thresholds))
return nil, nil, fmt.Errorf("thresholds received from EigenDAServiceManager contains %d > 256 quorums, which isn't possible", len(thresholds))
}
var quorumAdversaryThresholds = make(map[uint8]uint8)
for quorumNum, threshold := range thresholds {
Expand Down

0 comments on commit 5674628

Please sign in to comment.