chore: lint v2 (#24118)
This commit is contained in:
@@ -30,7 +30,7 @@ func RandomGenesisAccounts(simState *module.SimulationState) types.GenesisAccoun
|
||||
|
||||
// Only consider making a vesting account once the initial bonded validator
|
||||
// set is exhausted due to needing to track DelegatedVesting.
|
||||
if !(int64(i) > simState.NumBonded && simState.Rand.Intn(100) < 50) {
|
||||
if int64(i) <= simState.NumBonded || simState.Rand.Intn(100) >= 50 {
|
||||
genesisAccs[i] = bacc
|
||||
continue
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user