2020-04-23 16:35:58 +00:00
|
|
|
package params
|
|
|
|
|
|
|
|
// Simulation parameter constants
|
|
|
|
const (
|
|
|
|
StakePerAccount = "stake_per_account"
|
|
|
|
InitiallyBondedValidators = "initially_bonded_validators"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Default simulation operation weights for messages and gov proposals
|
|
|
|
const (
|
2020-04-29 14:10:41 +00:00
|
|
|
DefaultWeightMsgPlaceBid int = 75
|
|
|
|
DefaultWeightMsgCreateAtomicSwap int = 50
|
|
|
|
DefaultWeightMsgUpdatePrices int = 50
|
2020-04-23 16:35:58 +00:00
|
|
|
DefaultWeightMsgCdp int = 100
|
2020-04-29 14:10:41 +00:00
|
|
|
DefaultWeightMsgClaimReward int = 50
|
2020-04-23 16:35:58 +00:00
|
|
|
)
|