Skip to content

Commit

Permalink
Merge PR cosmos#3527: Multiply initial token amounts by 1e6
Browse files Browse the repository at this point in the history
  • Loading branch information
cwgoes authored and rigelrozanski committed Feb 7, 2019
1 parent f6f24d8 commit fc85167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/gaia/app/sim_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func appStateRandomizedFn(r *rand.Rand, accs []simulation.Account, genesisTimest

var genesisAccounts []GenesisAccount

amount := int64(r.Intn(1e6))
amount := int64(r.Intn(1e12))
numInitiallyBonded := int64(r.Intn(250))
numAccs := int64(len(accs))
if numInitiallyBonded > numAccs {
Expand Down

0 comments on commit fc85167

Please sign in to comment.