We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
When we create proposal with cmd, we define the proposal.json file format like below
RewardWeightUpdateProposalJSON struct { Title string `json:"title" yaml:"title"` Description string `json:"description" yaml:"description"` RewardWeight sdk.Dec `json:"tax_rate" yaml:"tax_rate"` Deposit sdk.Coins `json:"deposit" yaml:"deposit"` }
But, it is mapping RewardWeight to tax_rate json key.
RewardWeight
tax_rate
To Reproduce Try to create RewardWeightUpdateProposal via cmd
Context & versions v0.4.x
(if applicable) suggested solution map RewardWeight to reward_weight json key.
reward_weight
The text was updated successfully, but these errors were encountered:
yun-yeo
Successfully merging a pull request may close this issue.
Describe the bug
When we create proposal with cmd, we define the proposal.json file format like below
But, it is mapping
RewardWeight
totax_rate
json key.To Reproduce
Try to create RewardWeightUpdateProposal via cmd
Context & versions
v0.4.x
(if applicable) suggested solution
map
RewardWeight
toreward_weight
json key.The text was updated successfully, but these errors were encountered: