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-08-17 15:06:59 +00:00
|
|
|
DefaultWeightMsgPlaceBid int = 20
|
|
|
|
DefaultWeightMsgCreateAtomicSwap int = 20
|
|
|
|
DefaultWeightMsgUpdatePrices int = 20
|
|
|
|
DefaultWeightMsgCdp int = 20
|
|
|
|
DefaultWeightMsgClaimReward int = 20
|
2020-08-17 17:09:02 +00:00
|
|
|
DefaultWeightMsgIssue int = 20
|
|
|
|
DefaultWeightMsgRedeem int = 20
|
|
|
|
DefaultWeightMsgBlock int = 20
|
|
|
|
DefaultWeightMsgPause int = 20
|
2020-08-17 15:06:59 +00:00
|
|
|
OpWeightSubmitCommitteeChangeProposal int = 20
|
2020-04-23 16:35:58 +00:00
|
|
|
)
|