From b6b6e4eb98118bd9511523e2ac92ff801a783039 Mon Sep 17 00:00:00 2001 From: ajansari95 <53616488+ajansari95@users.noreply.github.com> Date: Mon, 7 Oct 2024 13:51:59 +0530 Subject: [PATCH] fix lint --- x/participationrewards/keeper/submodule_osmosiscl.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/participationrewards/keeper/submodule_osmosiscl.go b/x/participationrewards/keeper/submodule_osmosiscl.go index 88313b5f7..8d15fa89e 100644 --- a/x/participationrewards/keeper/submodule_osmosiscl.go +++ b/x/participationrewards/keeper/submodule_osmosiscl.go @@ -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 }