Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ajansari95 committed Oct 7, 2024
1 parent 03a2194 commit b6b6e4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/participationrewards/keeper/submodule_osmosiscl.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ func (*OsmosisClModule) KeyPool(poolID uint64) []byte {
return osmocl.KeyPool(poolID)
}

func (k *Keeper) ApplicableDenomForZone(ctx sdk.Context, chainId string) (denom string, found bool) {
zone, found := k.icsKeeper.GetZone(ctx, chainId)
func (k *Keeper) ApplicableDenomForZone(ctx sdk.Context, chainID string) (denom string, found bool) {
zone, found := k.icsKeeper.GetZone(ctx, chainID)
if !found {
return "", false
}
Expand Down

0 comments on commit b6b6e4e

Please sign in to comment.