refactor!: MsgSimulatorFn clean up (#19792)

This commit is contained in:
Julián Toledano
2024-03-20 10:21:00 +00:00
committed by GitHub
parent 3ed9f7fc69
commit 0c2decd7cd
23 changed files with 29 additions and 36 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ func (m MockWeightedProposals) DefaultWeight() int {
}
func (m MockWeightedProposals) MsgSimulatorFn() simtypes.MsgSimulatorFn {
return func(r *rand.Rand, _ sdk.Context, _ []simtypes.Account, _ address.Codec) (sdk.Msg, error) {
return func(r *rand.Rand, _ []simtypes.Account, _ address.Codec) (sdk.Msg, error) {
return nil, nil
}
}