mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
a573625df8
* bump SDK version to v0.38.3 Co-authored-by: Denali Marsh <denali@kava.io> Co-authored-by: Kevin Davis <kjydavis3@gmail.com> Co-authored-by: Kevin Davis <karzak@users.noreply.github.com> Co-authored-by: denalimarsh <denalimarsh@gmail.com> Co-authored-by: rhuairahrighairigh <ruaridh.odonnell@gmail.com>
47 lines
1.6 KiB
Go
47 lines
1.6 KiB
Go
package simulation
|
|
|
|
import (
|
|
"fmt"
|
|
"math/rand"
|
|
|
|
"github.com/cosmos/cosmos-sdk/x/simulation"
|
|
|
|
"github.com/kava-labs/kava/x/auction/types"
|
|
)
|
|
|
|
// ParamChanges defines the parameters that can be modified by param change proposals
|
|
// on the simulation
|
|
func ParamChanges(r *rand.Rand) []simulation.ParamChange {
|
|
// Note: params are encoded to JSON before being stored in the param store. These param changes
|
|
// update the raw values in the store so values need to be JSON. This is why values that are represented
|
|
// as strings in JSON (such as time.Duration) have the escaped quotes.
|
|
// TODO should we encode the values properly with ModuleCdc.MustMarshalJSON()?
|
|
return []simulation.ParamChange{
|
|
simulation.NewSimParamChange(types.ModuleName, string(types.KeyBidDuration),
|
|
func(r *rand.Rand) string {
|
|
return fmt.Sprintf("%d", GenBidDuration(r))
|
|
},
|
|
),
|
|
simulation.NewSimParamChange(types.ModuleName, string(types.KeyMaxAuctionDuration),
|
|
func(r *rand.Rand) string {
|
|
return fmt.Sprintf("%d", GenMaxAuctionDuration(r))
|
|
},
|
|
),
|
|
simulation.NewSimParamChange(types.ModuleName, string(types.KeyIncrementCollateral),
|
|
func(r *rand.Rand) string {
|
|
return fmt.Sprintf("%d", GenIncrementCollateral(r))
|
|
},
|
|
),
|
|
simulation.NewSimParamChange(types.ModuleName, string(types.KeyIncrementDebt),
|
|
func(r *rand.Rand) string {
|
|
return fmt.Sprintf("%d", GenIncrementDebt(r))
|
|
},
|
|
),
|
|
simulation.NewSimParamChange(types.ModuleName, string(types.KeyIncrementSurplus),
|
|
func(r *rand.Rand) string {
|
|
return fmt.Sprintf("%d", GenIncrementSurplus(r))
|
|
},
|
|
),
|
|
}
|
|
}
|