mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
a573625df8
* bump SDK version to v0.38.3 Co-authored-by: Denali Marsh <denali@kava.io> Co-authored-by: Kevin Davis <kjydavis3@gmail.com> Co-authored-by: Kevin Davis <karzak@users.noreply.github.com> Co-authored-by: denalimarsh <denalimarsh@gmail.com> Co-authored-by: rhuairahrighairigh <ruaridh.odonnell@gmail.com>
16 lines
426 B
Go
16 lines
426 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 = 100
|
|
DefaultWeightMsgCreateAtomicSwap int = 100
|
|
DefaultWeightMsgUpdatePrices int = 100
|
|
DefaultWeightMsgCdp int = 100
|
|
)
|