mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +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>
20 lines
605 B
Go
20 lines
605 B
Go
/*
|
|
Package params defines the simulation parameters for the Kava app.
|
|
|
|
It contains the default weights used for each transaction used on the module's
|
|
simulation. These weights define the chance for a transaction to be simulated at
|
|
any gived operation.
|
|
|
|
You can repace the default values for the weights by providing a params.json
|
|
file with the weights defined for each of the transaction operations:
|
|
|
|
{
|
|
"op_weight_msg_send": 60,
|
|
"op_weight_msg_delegate": 100,
|
|
}
|
|
|
|
In the example above, the `MsgSend` has 60% chance to be simulated, while the
|
|
`MsgDelegate` will always be simulated.
|
|
*/
|
|
package params
|