From dd7d32d30c85ba5da1fe9dd192b78825a5fe069a Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Mon, 2 Jan 2023 14:24:59 +0100 Subject: [PATCH] update e2e --- tests/e2e/distribution/suite.go | 6 +++--- x/distribution/README.md | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/tests/e2e/distribution/suite.go b/tests/e2e/distribution/suite.go index eaab5a4c0a39a..9a64ea741190b 100644 --- a/tests/e2e/distribution/suite.go +++ b/tests/e2e/distribution/suite.go @@ -80,14 +80,14 @@ func (s *E2ETestSuite) TestGetCmdQueryParams() { { "json output", []string{fmt.Sprintf("--%s=json", flags.FlagOutput)}, - `{"community_tax":"0.020000000000000000","base_proposer_reward":"0.010000000000000000","bonus_proposer_reward":"0.040000000000000000","withdraw_addr_enabled":true}`, + `{"community_tax":"0.020000000000000000","base_proposer_reward":"0.000000000000000000","bonus_proposer_reward":"0.000000000000000000","withdraw_addr_enabled":true}`, }, { "text output", []string{fmt.Sprintf("--%s=text", flags.FlagOutput)}, `base_proposer_reward: "0.010000000000000000" -bonus_proposer_reward: "0.040000000000000000" -community_tax: "0.020000000000000000" +bonus_proposer_reward: "0.000000000000000000" +community_tax: "0.000000000000000000" withdraw_addr_enabled: true`, }, } diff --git a/x/distribution/README.md b/x/distribution/README.md index 52822f466bd66..7b96e1ae2fbf4 100644 --- a/x/distribution/README.md +++ b/x/distribution/README.md @@ -592,6 +592,8 @@ simd query distribution params Example Output: ```yml +base_proposer_reward: "0.000000000000000000" +bonus_proposer_reward: "0.000000000000000000" community_tax: "0.020000000000000000" withdraw_addr_enabled: true ``` @@ -777,6 +779,8 @@ Example Output: { "params": { "communityTax": "20000000000000000", + "baseProposerReward": "00000000000000000", + "bonusProposerReward": "00000000000000000", "withdrawAddrEnabled": true } }