From bea3b03d0e50bdbdaebd8c3fd399e9a05acb674e Mon Sep 17 00:00:00 2001 From: Marc Puig Date: Tue, 12 Mar 2024 10:19:23 +0100 Subject: [PATCH] chore: Prepare v2.11.0 (#785) * changelog * lint --- CHANGELOG.md | 15 +++++++++++++++ x/liquidstake/keeper/hooks.go | 1 - 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0836668..49030ed7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,21 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## Unreleased +## [v2.11.0] - 2024-03-12 + +### Features + +- [783](https://github.com/persistenceOne/pstake-native/pull/783) Move rewards autocompounding to hourly epoch. +- [784](https://github.com/persistenceOne/pstake-native/pull/784) Allow admin address to update params. + +### Improvements + +- [773](https://github.com/persistenceOne/pstake-native/pull/773) Improve logging. + +### Bug Fixes + +- [774](https://github.com/persistenceOne/pstake-native/pull/774) Fix liquidstake params test. + ## [v2.10.0] - 2024-02-21 ### Features diff --git a/x/liquidstake/keeper/hooks.go b/x/liquidstake/keeper/hooks.go index 61b4aa77..776b4875 100644 --- a/x/liquidstake/keeper/hooks.go +++ b/x/liquidstake/keeper/hooks.go @@ -27,7 +27,6 @@ func (h EpochHooks) AfterEpochEnd(_ sdk.Context, _ string, _ int64) error { } func (k Keeper) BeforeEpochStart(ctx sdk.Context, epochIdentifier string, epochNumber int64) error { - if !k.GetParams(ctx).ModulePaused { // Update the liquid validator set at the start of each epoch if epochIdentifier == liquidstake.AutocompoundEpoch {