package simulation import ( simtypes "git.cw.tr/mukan-network/mukan-sdk/types/simulation" "git.cw.tr/mukan-network/mukan-sdk/x/simulation" ) // will be removed in the future const ( // OpWeightSubmitParamChangeProposal app params key for param change proposal OpWeightSubmitParamChangeProposal = "op_weight_submit_param_change_proposal" DefaultWeightParamChangeProposal = 5 ) // ProposalContents defines the module weighted proposals' contents // // will be removed in the future // //nolint:staticcheck // used for legacy testing func ProposalContents(paramChanges []simtypes.LegacyParamChange) []simtypes.WeightedProposalContent { return []simtypes.WeightedProposalContent{ simulation.NewWeightedProposalContent( OpWeightSubmitParamChangeProposal, DefaultWeightParamChangeProposal, SimulateParamChangeProposalContent(paramChanges), ), } }