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
See #3336
This apparently wasn't fixed for governance transactions.
Gaia commit: 30aebc1173ed6dae2848d1e845ec2f4e22750355
30aebc1173ed6dae2848d1e845ec2f4e22750355
The text was updated successfully, but these errors were encountered:
What makes you say this @faboweb? Just took a look at the latest develop and the commit you mentioned and all the GetSignBytes look correct to me:
GetSignBytes
e.g.
func (msg MsgSubmitProposal) GetSignBytes() []byte { bz := msgCdc.MustMarshalJSON(msg) return sdk.MustSortJSON(bz) }
Each of the three total x/gov messages uses msgCdc.MustMarshalJSON(msg).
msgCdc.MustMarshalJSON(msg)
Sorry, something went wrong.
Because I needed to re-add the hack to remove {type, value} from the message for the created signature to be accepted.
{type, value}
See: https://github.com/cosmos/voyager/blob/develop/app/src/renderer/scripts/wallet.js#L85 Needed on commit: 30aebc1173ed6dae2848d1e845ec2f4e22750355
@faboweb so sorry, I completely didn't realize x/gov does NOT register these types via an init call. Thank you. Trivial fix.
init
Thx for the effort.
thanks 👍
alexanderbez
Successfully merging a pull request may close this issue.
Summary of Bug
See #3336
This apparently wasn't fixed for governance transactions.
Gaia commit:
30aebc1173ed6dae2848d1e845ec2f4e22750355
Steps to Reproduce
For Admin Use
The text was updated successfully, but these errors were encountered: