diff --git a/x/gashub/simulation/params.go b/x/gashub/simulation/params.go index 70a561c639..03d04e5d52 100644 --- a/x/gashub/simulation/params.go +++ b/x/gashub/simulation/params.go @@ -12,14 +12,14 @@ import ( ) const ( - keyFixedMsgGas = "FixedMsgGas" + keyMsgSendGas = "MsgSendGas" ) // ParamChanges defines the parameters that can be modified by param change proposals // on the simulation func ParamChanges(r *rand.Rand) []simtypes.ParamChange { return []simtypes.ParamChange{ - simulation.NewSimParamChange(types.ModuleName, keyFixedMsgGas, + simulation.NewSimParamChange(types.ModuleName, keyMsgSendGas, func(r *rand.Rand) string { return fmt.Sprintf("%d", GenMsgGas(r)) },