mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
e14466547d
* wip: issuance module * add keeper and module methods * add begin blocker * add client * update events * add simulations * ignore v0.8 migration tests for now * ignore migration tests in ci * add test suite * update spec to match implementation details * add unblock method * address review comments * fix typos
22 lines
730 B
Go
22 lines
730 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 = 20
|
|
DefaultWeightMsgCreateAtomicSwap int = 20
|
|
DefaultWeightMsgUpdatePrices int = 20
|
|
DefaultWeightMsgCdp int = 20
|
|
DefaultWeightMsgClaimReward int = 20
|
|
DefaultWeightMsgIssue int = 20
|
|
DefaultWeightMsgRedeem int = 20
|
|
DefaultWeightMsgBlock int = 20
|
|
DefaultWeightMsgPause int = 20
|
|
OpWeightSubmitCommitteeChangeProposal int = 20
|
|
)
|