Merge branch 'release/v0.53.x' into v53-set

This commit is contained in:
aljo242 2025-03-31 10:26:07 -04:00
commit 9115cfcbbe
No known key found for this signature in database
GPG Key ID: 63A227E968B28324

View File

@ -93,7 +93,10 @@ func (suite *DeterministicTestSuite) createAndSetAccounts(t *rapid.T, count int)
accs := make([]sdk.AccountI, 0, count)
// We need all generated account-numbers unique
accNums := rapid.SliceOfNDistinct(rapid.Uint64(), count, count, func(i uint64) uint64 {
if count >= 1000 {
suite.T().Fatal("count must be less than 1000")
}
accNums := rapid.SliceOfNDistinct(rapid.Uint64Range(0, 999), count, count, func(i uint64) uint64 {
return i
}).Draw(t, "acc-nums")