diff --git a/x/clp/keeper/msg_server.go b/x/clp/keeper/msg_server.go index 80a06be159..280bce0c7b 100644 --- a/x/clp/keeper/msg_server.go +++ b/x/clp/keeper/msg_server.go @@ -107,6 +107,9 @@ func (k msgServer) UpdateRewardsParams(goCtx context.Context, msg *types.MsgUpda params := k.GetRewardsParams(ctx) params.LiquidityRemovalLockPeriod = msg.LiquidityRemovalLockPeriod params.LiquidityRemovalCancelPeriod = msg.LiquidityRemovalCancelPeriod + params.RewardsDistribute = msg.RewardsDistribute + params.RewardsEpochIdentifier = msg.RewardsEpochIdentifier + params.RewardsLockPeriod = msg.RewardsLockPeriod k.SetRewardParams(ctx, params) return response, err }