diff --git a/changelog.md b/changelog.md index 237e133807..1fc764d16c 100644 --- a/changelog.md +++ b/changelog.md @@ -4,13 +4,17 @@ ### Features -- [#4377](https://github.com/ignite/cli/pull/4377) Add multi node (validator) testnet. +- [#4377](https://github.com/ignite/cli/pull/4377) Add multi node (validator) testnet - [#4362](https://github.com/ignite/cli/pull/4362) Scaffold `Makefile` ### Changes - [#4376](https://github.com/ignite/cli/pull/4376) Set different chain-id for in place testnet +### Bug Fixes + +- [#4421](https://github.com/ignite/cli/pull/4422) Fix typo in simulation template + ## [`v28.5.3`](https://github.com/ignite/cli/releases/tag/v28.5.3) ### Changes diff --git a/ignite/templates/typed/list/files/simapp/x/{{moduleName}}/simulation/{{typeName}}.go.plush b/ignite/templates/typed/list/files/simapp/x/{{moduleName}}/simulation/{{typeName}}.go.plush index 2b4b871bd7..5723b5b211 100644 --- a/ignite/templates/typed/list/files/simapp/x/{{moduleName}}/simulation/{{typeName}}.go.plush +++ b/ignite/templates/typed/list/files/simapp/x/{{moduleName}}/simulation/{{typeName}}.go.plush @@ -96,7 +96,7 @@ func SimulateMsgDelete<%= TypeName.UpperCamel %>( var ( simAccount = simtypes.Account{} <%= TypeName.LowerCamel %> = types.<%= TypeName.UpperCamel %>{} - msg = &types.MsgUpdate<%= TypeName.UpperCamel %>{} + msg = &types.MsgDelete<%= TypeName.UpperCamel %>{} all<%= TypeName.UpperCamel %> = k.GetAll<%= TypeName.UpperCamel %>(ctx) found = false )