Skip to content

Commit

Permalink
Fix key for validator set updates
Browse files Browse the repository at this point in the history
  • Loading branch information
p-offtermatt committed Jul 24, 2024
1 parent 92904e9 commit 9ab14ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/ccv/provider/keeper/validator_set_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

// GetConsumerChainConsensusValidatorsKey returns the store key for consumer validators of the consumer chain with `chainID`
func (k Keeper) GetConsumerChainConsensusValidatorsKey(ctx sdk.Context, chainID string) []byte {
return types.ChainIdWithLenKey(types.ConsumerValidatorsKeyPrefix(), chainID)
return types.ChainIdWithLenKey(types.ConsumerValidatorKeyPrefix(), chainID)
}

// SetConsumerValidator sets provided consumer `validator` on the consumer chain with `chainID`
Expand Down

0 comments on commit 9ab14ee

Please sign in to comment.