diff --git a/tests/e2e/dao/pop/selection_suite.go b/tests/e2e/dao/pop/selection_suite.go index 174f3bf..86129db 100644 --- a/tests/e2e/dao/pop/selection_suite.go +++ b/tests/e2e/dao/pop/selection_suite.go @@ -196,7 +196,7 @@ func (s *SelectionE2ETestSuite) VerifyTokens(token string) { }) s.Require().NoError(err) assert.Contains(s.T(), out.String(), token) - assert.Equal(s.T(), "amount: \"17979452053\"\ndenom: "+token+"\n", out.String()) // Total supply 2 * 7990867578 (total supply) + 1 * 1997716894 (challenger) = 17979452050 + assert.Equal(s.T(), "amount: \"18279452050\"\ndenom: "+token+"\n", out.String()) // Total supply 2 * 7990867578 (total supply) + 1 * 1997716894 (challenger) + 3 * 100000000 (validator) = 17979452050 out, err = clitestutil.ExecTestCLICmd(val.ClientCtx, bank.GetBalancesCmd(), []string{ machines[0].address, diff --git a/x/dao/migrations/v3/params.go b/x/dao/migrations/v3/params.go index 59e5ebd..8d4d723 100644 --- a/x/dao/migrations/v3/params.go +++ b/x/dao/migrations/v3/params.go @@ -17,7 +17,7 @@ func MigrateParams(ctx sdk.Context, storeKey storetypes.StoreKey, cdc codec.Bina return err } - params.ValidatorPopReward = 1 + params.ValidatorPopReward = 100000000 bz, err := cdc.Marshal(¶ms) if err != nil { diff --git a/x/dao/types/params.go b/x/dao/types/params.go index 6df3ede..ea2e8f4 100644 --- a/x/dao/types/params.go +++ b/x/dao/types/params.go @@ -65,7 +65,7 @@ func DefaultParams() Params { 2000, "plmnt1m5apfematgm7uueazhk482026ert95x2l2dx78", 200000, - 1, + 100000000, ) }