Skip to content

Commit

Permalink
fix lint (#1724)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajansari95 authored Oct 7, 2024
1 parent 03a2194 commit 1c6d373
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 1c6d373

Please sign in to comment.