mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
c175e9e856
* add kava modules to TestAppImportExport
17 lines
466 B
Go
17 lines
466 B
Go
package params
|
|
|
|
// Simulation parameter constants
|
|
const (
|
|
StakePerAccount = "stake_per_account"
|
|
InitiallyBondedValidators = "initially_bonded_validators"
|
|
)
|
|
|
|
// Default simulation operation weights for messages and gov proposals
|
|
const (
|
|
DefaultWeightMsgPlaceBid int = 75
|
|
DefaultWeightMsgCreateAtomicSwap int = 50
|
|
DefaultWeightMsgUpdatePrices int = 50
|
|
DefaultWeightMsgCdp int = 100
|
|
DefaultWeightMsgClaimReward int = 50
|
|
)
|