42 lines
1.0 KiB
Go
42 lines
1.0 KiB
Go
package simulation
|
|
|
|
// DONTCOVER
|
|
|
|
import (
|
|
"fmt"
|
|
"math/rand"
|
|
|
|
"github.com/cosmos/cosmos-sdk/x/simulation"
|
|
|
|
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
)
|
|
|
|
const (
|
|
keyMaxMemoCharacters = "MaxMemoCharacters"
|
|
keyTxSigLimit = "TxSigLimit"
|
|
keyTxSizeCostPerByte = "TxSizeCostPerByte"
|
|
)
|
|
|
|
// ParamChanges defines the parameters that can be modified by param change proposals
|
|
// on the simulation
|
|
func ParamChanges(r *rand.Rand) []simtypes.ParamChange {
|
|
return []simtypes.ParamChange{
|
|
simulation.NewSimParamChange(types.ModuleName, keyMaxMemoCharacters,
|
|
func(r *rand.Rand) string {
|
|
return fmt.Sprintf("\"%d\"", GenMaxMemoChars(r))
|
|
},
|
|
),
|
|
simulation.NewSimParamChange(types.ModuleName, keyTxSigLimit,
|
|
func(r *rand.Rand) string {
|
|
return fmt.Sprintf("\"%d\"", GenTxSigLimit(r))
|
|
},
|
|
),
|
|
simulation.NewSimParamChange(types.ModuleName, keyTxSizeCostPerByte,
|
|
func(r *rand.Rand) string {
|
|
return fmt.Sprintf("\"%d\"", GenTxSizeCostPerByte(r))
|
|
},
|
|
),
|
|
}
|
|
}
|