From 7051c8e4f2f8ded1c4d0dff4d3debf4908a057e2 Mon Sep 17 00:00:00 2001 From: Mike Date: Sun, 17 May 2026 23:34:24 +0800 Subject: [PATCH 1/2] fix: delete msg type in singleton simulation --- .../simapp/x/{{moduleName}}/simulation/{{typeName}}.go.plush | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ignite/templates/typed/singleton/files/simapp/x/{{moduleName}}/simulation/{{typeName}}.go.plush b/ignite/templates/typed/singleton/files/simapp/x/{{moduleName}}/simulation/{{typeName}}.go.plush index 2794dbf450..e2421ad94c 100644 --- a/ignite/templates/typed/singleton/files/simapp/x/{{moduleName}}/simulation/{{typeName}}.go.plush +++ b/ignite/templates/typed/singleton/files/simapp/x/{{moduleName}}/simulation/{{typeName}}.go.plush @@ -107,7 +107,7 @@ func SimulateMsgDelete<%= TypeName.PascalCase %>( ) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { var ( simAccount = simtypes.Account{} - msg = &types.MsgUpdate<%= TypeName.PascalCase %>{} + msg = &types.MsgDelete<%= TypeName.PascalCase %>{} ) <%= TypeName.LowerCamel %>, err := k.<%= TypeName.UpperCamel %>.Get(ctx) From e8b7d0f848f2cbb7f8bb73da907840fd5080816d Mon Sep 17 00:00:00 2001 From: Mike Date: Sun, 17 May 2026 23:38:23 +0800 Subject: [PATCH 2/2] doc: update changelog.md --- changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.md b/changelog.md index 7a6113d2c7..5567f6ff1e 100644 --- a/changelog.md +++ b/changelog.md @@ -5,6 +5,7 @@ ### Fixes - [#4931](https://github.com/ignite/cli/pull/4931) Fix faucet default denom in generated app config. +- [#4940](https://github.com/ignite/cli/pull/4940) Fix generated typed singleton delete simulations to use `MsgDelete`. ## [`v29.10.0`](https://github.com/ignite/cli/releases/tag/v29.10.0)