diff --git a/CHANGELOG.md b/CHANGELOG.md index 0132b918c4fd..8fdc55fdbe67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * [#13588](https://github.com/cosmos/cosmos-sdk/pull/13588) Fix regression in distrubtion.WithdrawDelegationRewards when rewards are zero * [#13564](https://github.com/cosmos/cosmos-sdk/pull/13564) - Fix `make proto-gen`. +* (server) [#13610](https://github.com/cosmos/cosmos-sdk/pull/13610) Read the pruning-keep-every field again. ## v0.45.9 - 2022-10-14 diff --git a/server/config/config.go b/server/config/config.go index e7dc56ae833c..39f07558e42a 100644 --- a/server/config/config.go +++ b/server/config/config.go @@ -277,6 +277,7 @@ func GetConfig(v *viper.Viper) (Config, error) { InterBlockCache: v.GetBool("inter-block-cache"), Pruning: v.GetString("pruning"), PruningKeepRecent: v.GetString("pruning-keep-recent"), + PruningKeepEvery: v.GetString("pruning-keep-every"), PruningInterval: v.GetString("pruning-interval"), HaltHeight: v.GetUint64("halt-height"), HaltTime: v.GetUint64("halt-time"),