* Upgrade to cosmos-sdk v0.44.5 * Upgrade to sdk v0.45.0-rc1 * Fix local test deploy scripts * Bump to v0.45.0 final release * Fixed replace to 0.45.0 not rc1 * Fix changed import path since rc1 Co-authored-by: Ethan Frey <ethanfrey@users.noreply.github.com>
20 lines
600 B
Go
20 lines
600 B
Go
/*
|
|
Package params defines the simulation parameters in the gaia.
|
|
|
|
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
|