-
Notifications
You must be signed in to change notification settings - Fork 290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Override BaseProposerReward
and BonusProposerReward
to 0%
#2716
Comments
rootulp
changed the title
Override
Override Oct 18, 2023
BaseProposerReward
and BonusProposerReward
to 0BaseProposerReward
and BonusProposerReward
to 0%
rootulp
added a commit
that referenced
this issue
Oct 19, 2023
Closes #2716 ## Testing ```bash ./scripts/single-node.sh cat ~/.celestia-app/config/genesis.json ``` ### Before ```genesis.json "distribution": { "params": { "community_tax": "0.020000000000000000", "base_proposer_reward": "0.010000000000000000", "bonus_proposer_reward": "0.040000000000000000", "withdraw_addr_enabled": true }, ``` ### After ```genesis.json "distribution": { "params": { "community_tax": "0.020000000000000000", "base_proposer_reward": "0.000000000000000000", "bonus_proposer_reward": "0.000000000000000000", "withdraw_addr_enabled": true }, ```
mergify bot
pushed a commit
that referenced
this issue
Oct 19, 2023
Closes #2716 ## Testing ```bash ./scripts/single-node.sh cat ~/.celestia-app/config/genesis.json ``` ### Before ```genesis.json "distribution": { "params": { "community_tax": "0.020000000000000000", "base_proposer_reward": "0.010000000000000000", "bonus_proposer_reward": "0.040000000000000000", "withdraw_addr_enabled": true }, ``` ### After ```genesis.json "distribution": { "params": { "community_tax": "0.020000000000000000", "base_proposer_reward": "0.000000000000000000", "bonus_proposer_reward": "0.000000000000000000", "withdraw_addr_enabled": true }, ``` (cherry picked from commit dfd9959)
0xchainlover
pushed a commit
to celestia-org/celestia-app
that referenced
this issue
Aug 1, 2024
Closes celestiaorg/celestia-app#2716 ## Testing ```bash ./scripts/single-node.sh cat ~/.celestia-app/config/genesis.json ``` ### Before ```genesis.json "distribution": { "params": { "community_tax": "0.020000000000000000", "base_proposer_reward": "0.010000000000000000", "bonus_proposer_reward": "0.040000000000000000", "withdraw_addr_enabled": true }, ``` ### After ```genesis.json "distribution": { "params": { "community_tax": "0.020000000000000000", "base_proposer_reward": "0.000000000000000000", "bonus_proposer_reward": "0.000000000000000000", "withdraw_addr_enabled": true }, ```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Context
We overrode the distribution module's
BaseProposerReward
andBonusProposerReward
in celestiaorg/cosmos-sdk#309 to 0%. However, that change was subsequently reverted in celestiaorg/cosmos-sdk#339 b/c the override was made in cosmos-sdk and we pulled upstream changes from cosmos-sdk.Problem
We want to set both of these params to
0
. Note they are already0
in the specsProposal
Make this change in celestia-app so we don't accidentally revert it again.
The text was updated successfully, but these errors were encountered: