* update operations to use baseapp * updates and cleanup operations * update operations * restructure sim ops params * rename sim /operations/msg.go to /operations.go * move GenTx to a helper pkg to avoid circle deps * rm msg.ValidateBasic * changelog * random fees; delete auth's DeductFees sim operation * add chain-id for sig verification * Update x/simulation/account.go Co-Authored-By: colin axner <colinaxner@berkeley.edu> * fix bank, gov and distr errors * fix staking and slashing errors; increase prob for send enabled * increase gas x10 * make format * fix some distr and staking edge cases * fix all edge cases * golang ci * rename acc vars; default no fees to 0stake * cleanup; check for exchange rate and skip invalid ops * fixes * check for max entries * add pubkey to genaccounts * fix gov bug * update staking sim ops * fix small redelegation error * fix small self delegation on unjail * rm inf loop on random val/accs * copy array * add ok boolean to RandomValidator return values * format * Update x/bank/simulation/operations.go Co-Authored-By: colin axner <colinaxner@berkeley.edu> * Update simapp/helpers/test_helpers.go Co-Authored-By: colin axner <colinaxner@berkeley.edu> * address @colin-axner comments * add genaccount pubkey validation * fix test * update operations and move RandomFees to x/simulation * update gov ops * address @alexanderbez comments * avoid modifications to config * reorder params * changelog * Update x/distribution/simulation/genesis.go Co-Authored-By: Alexander Bezobchuk <alexanderbez@users.noreply.github.com> * remove named return values * ensure all operations are simulated * golangci * add nolint * disable whitespace and funlen linter * disable godox * add TODO on unjail * update ops weights * remove dup * update godoc * x/slashing/simulation/operations.go linting * x/staking/simulation/operations.go linting * update operations format * x/bank/simulation/operations.go linting * x/distribution/simulation/operations.go linting * x/staking/simulation/operations.go linting * start changes: make bank simulate send multiple coins, code cleanup * fix nondeterminism bug * fix txsiglimit err * fix multisend bug * simplify simulation, cleanup opt privkey args * make slashing test invalid unjail msgs * Update simapp/state.go * golangCI changes
54 lines
1.9 KiB
Go
54 lines
1.9 KiB
Go
package simulation
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
govsim "github.com/cosmos/cosmos-sdk/x/gov/simulation"
|
|
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
|
|
"github.com/cosmos/cosmos-sdk/x/params"
|
|
"github.com/cosmos/cosmos-sdk/x/simulation"
|
|
)
|
|
|
|
// SimulateParamChangeProposalContent returns random parameter change content.
|
|
// It will generate a ParameterChangeProposal object with anywhere between 1 and
|
|
// the total amount of defined parameters changes, all of which have random valid values.
|
|
func SimulateParamChangeProposalContent(paramChangePool []simulation.ParamChange) govsim.ContentSimulator {
|
|
return func(r *rand.Rand, _ sdk.Context, _ []simulation.Account) govtypes.Content {
|
|
|
|
lenParamChange := len(paramChangePool)
|
|
if lenParamChange == 0 {
|
|
panic("param changes array is empty")
|
|
}
|
|
|
|
numChanges := simulation.RandIntBetween(r, 1, lenParamChange)
|
|
paramChanges := make([]params.ParamChange, numChanges)
|
|
|
|
// map from key to empty struct; used only for look-up of the keys of the
|
|
// parameters that are already in the random set of changes.
|
|
paramChangesKeys := make(map[string]struct{})
|
|
|
|
for i := 0; i < numChanges; i++ {
|
|
spc := paramChangePool[r.Intn(len(paramChangePool))]
|
|
|
|
// do not include duplicate parameter changes for a given subspace/key
|
|
_, ok := paramChangesKeys[spc.ComposedKey()]
|
|
for ok {
|
|
spc = paramChangePool[r.Intn(len(paramChangePool))]
|
|
_, ok = paramChangesKeys[spc.ComposedKey()]
|
|
}
|
|
|
|
// add a new distinct parameter to the set of changes and register the key
|
|
// to avoid further duplicates
|
|
paramChangesKeys[spc.ComposedKey()] = struct{}{}
|
|
paramChanges[i] = params.NewParamChangeWithSubkey(spc.Subspace, spc.Key, spc.Subkey, spc.SimValue(r))
|
|
}
|
|
|
|
return params.NewParameterChangeProposal(
|
|
simulation.RandStringOfLength(r, 140), // title
|
|
simulation.RandStringOfLength(r, 5000), // description
|
|
paramChanges, // set of changes
|
|
)
|
|
}
|
|
}
|