2020-08-17 17:09:02 +00:00
|
|
|
package simulation
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// import (
|
|
|
|
// "fmt"
|
|
|
|
// "math/rand"
|
2020-08-17 17:09:02 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// "github.com/cosmos/cosmos-sdk/x/simulation"
|
2020-08-17 17:09:02 +00:00
|
|
|
|
2024-05-01 03:17:24 +00:00
|
|
|
// "github.com/0glabs/0g-chain/x/issuance/types"
|
2022-01-08 00:39:27 +00:00
|
|
|
// )
|
2020-08-17 17:09:02 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// const (
|
|
|
|
// keyAssets = "Assets"
|
|
|
|
// )
|
2020-08-17 17:09:02 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// // ParamChanges defines the parameters that can be modified by param change proposals
|
|
|
|
// func ParamChanges(r *rand.Rand) []simulation.ParamChange {
|
|
|
|
// return []simulation.ParamChange{
|
|
|
|
// simulation.NewSimParamChange(types.ModuleName, keyAssets,
|
|
|
|
// func(r *rand.Rand) string {
|
|
|
|
// return fmt.Sprintf("\"%s\"", randomizedAssets(r))
|
|
|
|
// },
|
|
|
|
// ),
|
|
|
|
// }
|
|
|
|
// }
|