Skip to content

Commit

Permalink
fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
mpoke committed Sep 3, 2024
1 parent 744c19d commit 66e3a2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/ccv/provider/keeper/relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (k Keeper) EndBlockVSU(ctx sdk.Context) ([]abci.ValidatorUpdate, error) {
// logic to update the provider consensus validator set.
valUpdates, err := k.ProviderValidatorUpdates(ctx)
if err != nil {
return []abci.ValidatorUpdate{}, fmt.Errorf("updating the provider consensus validator set: %w", err)
return []abci.ValidatorUpdate{}, fmt.Errorf("computing the provider consensus validator set: %w", err)
}

if k.BlocksUntilNextEpoch(ctx) == 0 {
Expand Down

0 comments on commit 66e3a2e

Please sign in to comment.