SimulationOperations retrieves the simulation params from the provided file path and returns all the modules weighted operations Deprecated: use BuildSimulationOperations with TxConfig
(app runtime.AppI, cdc codec.JSONCodec, config simtypes.Config)
| 52 | // and returns all the modules weighted operations |
| 53 | // Deprecated: use BuildSimulationOperations with TxConfig |
| 54 | func SimulationOperations(app runtime.AppI, cdc codec.JSONCodec, config simtypes.Config) []simtypes.WeightedOperation { |
| 55 | return BuildSimulationOperations(app, cdc, config, moduletestutil.MakeTestTxConfig()) |
| 56 | } |
| 57 | |
| 58 | // BuildSimulationOperations retrieves the simulation params from the provided file path |
| 59 | // and returns all the module-weighted operations |
nothing calls this directly
no test coverage detected