diff --git a/app/sim_test.go b/app/sim_test.go index ace81f85..06905cba 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -14,7 +14,6 @@ import ( dbm "github.com/cosmos/cosmos-db" "cosmossdk.io/log" - "cosmossdk.io/math" "cosmossdk.io/store" "github.com/cosmos/cosmos-sdk/baseapp" @@ -106,14 +105,6 @@ func TestAppStateDeterminism(t *testing.T) { baseapp.SetChainID(AppChainID), ) - // NOTE: setting to zero to avoid failing the simulation - // due to the minimum staked tokens required to submit a vote - ante.SetMinStakedTokens(math.LegacyZeroDec()) - - // NOTE: setting to zero to avoid failing the simulation - // milkyway ante allows only certain proposals to be expedited - the simulation doesn't know about this - ante.SetExpeditedProposalsEnabled(false) - fmt.Printf( "running non-determinism simulation; seed %d: %d/%d, attempt: %d/%d\n", config.Seed, i+1, numSeeds, j+1, numTimesToRunPerSeed,