diff --git a/x/wasm/simulation/proposals.go b/x/wasm/simulation/proposals.go index 13d93a6ecb..0cef0ae355 100644 --- a/x/wasm/simulation/proposals.go +++ b/x/wasm/simulation/proposals.go @@ -78,14 +78,14 @@ func ProposalContents(bk BankKeeper, wasmKeeper WasmKeeper) []simtypes.WeightedP DefaultSimulationCodeIDSelector, ), ), - simulation.NewWeightedProposalContent( - WeightSudoContractProposal, - params.DefaultWeightSudoContractProposal, - SimulateSudoContractProposal( - wasmKeeper, - DefaultSimulateContractSelector, - ), - ), + //simulation.NewWeightedProposalContent( + // WeightSudoContractProposal, + // params.DefaultWeightSudoContractProposal, + // SimulateSudoContractProposal( + // wasmKeeper, + // DefaultSimulateContractSelector, + // ), + //), simulation.NewWeightedProposalContent( WeightPinCodesProposal, params.DefaultWeightPinCodesProposal, @@ -110,13 +110,13 @@ func ProposalContents(bk BankKeeper, wasmKeeper WasmKeeper) []simtypes.WeightedP DefaultSimulationCodeIDSelector, ), ), - simulation.NewWeightedProposalContent( - WeightStoreAndInstantiateContractProposal, - params.DefaultWeightStoreAndInstantiateContractProposal, - SimulateStoreAndInstantiateContractProposal( - wasmKeeper, - ), - ), + //simulation.NewWeightedProposalContent( + // WeightStoreAndInstantiateContractProposal, + // params.DefaultWeightStoreAndInstantiateContractProposal, + // SimulateStoreAndInstantiateContractProposal( + // wasmKeeper, + // ), + //), } }