* progress * simapp out * add files * Update x/feegrant/simulation/operations_test.go Co-authored-by: atheeshp <59333759+atheeshp@users.noreply.github.com> * updates comments * implement feedback * apply suggestions Co-authored-by: Facundo Medica <14063057+facundomedica@users.noreply.github.com>
17 lines
675 B
Go
17 lines
675 B
Go
package params
|
|
|
|
// Default simulation operation weights for messages and gov proposals
|
|
const (
|
|
DefaultWeightMsgSend int = 100
|
|
DefaultWeightMsgMultiSend int = 10
|
|
DefaultWeightMsgDeposit int = 100
|
|
DefaultWeightMsgVote int = 67
|
|
DefaultWeightMsgVoteWeighted int = 33
|
|
DefaultWeightMsgCreateValidator int = 100
|
|
DefaultWeightMsgEditValidator int = 5
|
|
DefaultWeightMsgDelegate int = 100
|
|
DefaultWeightMsgUndelegate int = 100
|
|
DefaultWeightMsgBeginRedelegate int = 100
|
|
DefaultWeightMsgCancelUnbondingDelegation int = 100
|
|
)
|