From c49464816742caa78923db23e82228c721df93a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jer=C3=B3nimo=20Albi?= Date: Wed, 26 Jul 2023 11:15:43 +0200 Subject: [PATCH] chore: add back crisis module to SetOrderBeginBlockers (#3595) * chore: add back crisis module to SetOrderBeginBlockers The module must be added to avoid triggering an assertion that requires that all modules are added to `SetOrderBeginBlockers` even if they don't implement `HasBeginBlocker`. Modules that don't implement it can be removed once Cosmos SDK v0.50.0 is released. * chore: remove deprecated changelog entry --- changelog.md | 1 - ignite/templates/app/files/app/app.go.plush | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 6e887374e3..19b5b85e34 100644 --- a/changelog.md +++ b/changelog.md @@ -11,7 +11,6 @@ - [#3581](https://github.com/ignite/cli/pull/3581) Bump cometbft and cometbft-db in the template - [#3559](https://github.com/ignite/cli/pull/3559) Bump network plugin version to `v0.1.1` - [#3522](https://github.com/ignite/cli/pull/3522) Remove indentation from `chain serve` output -- [#3593](https://github.com/ignite/cli/pull/3593) Remove crisis module from begin blockers in app template ## [`v0.27.0`](https://github.com/ignite/cli/releases/tag/v0.27.0) diff --git a/ignite/templates/app/files/app/app.go.plush b/ignite/templates/app/files/app/app.go.plush index cc91466641..e706d54761 100644 --- a/ignite/templates/app/files/app/app.go.plush +++ b/ignite/templates/app/files/app/app.go.plush @@ -595,6 +595,7 @@ func New( authtypes.ModuleName, banktypes.ModuleName, govtypes.ModuleName, + crisistypes.ModuleName, ibctransfertypes.ModuleName, ibcexported.ModuleName, icatypes.ModuleName,