diff --git a/docs/migrations/v6-to-v7.md b/docs/migrations/v6-to-v7.md index f9086a48372..ab885f1cac0 100644 --- a/docs/migrations/v6-to-v7.md +++ b/docs/migrations/v6-to-v7.md @@ -302,7 +302,7 @@ Protobuf code generation, linting and formatting have been updated to leverage t ### App modules -The return values of `RandomizedParams` and `ProposalContents` have been updated. +The return value of `ProposalContents` have been updated. ```diff // ProposalContents doesn't return any content functions for governance proposals. @@ -310,12 +310,6 @@ The return values of `RandomizedParams` and `ProposalContents` have been updated + func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedProposalMsg { return nil } - -// RandomizedParams creates randomized ibc-transfer param changes for the simulator. -- func (AppModule) RandomizedParams(r *rand.Rand) []simtypes.ParamChange { -+ func (AppModule) RandomizedParams(r *rand.Rand) []simtypes.LegacyParamChange { - return simulation.ParamChanges(r) -} ``` Legacy APIs of the `AppModule` interface have been removed from ibc-go modules. For example, for