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
Enum
bincode serializes the Enums starting with u32. We have the MsgType enum introduced by the spec (https://github.com/ZcashFoundation/redjubjub/blob/fa74969d5653c620e831c8c51c096f051527d958/rfcs/0001-messages.md#header) that says this should be an u8.
u32
MsgType
u8
We can change the spec or manually serialize/deserialize MsgType: #114 (comment)
The text was updated successfully, but these errors were encountered:
dconnolly
chelseakomlo
No branches or pull requests
bincode serializes the
Enum
s starting withu32
. We have theMsgType
enum introduced by the spec (https://github.com/ZcashFoundation/redjubjub/blob/fa74969d5653c620e831c8c51c096f051527d958/rfcs/0001-messages.md#header) that says this should be anu8
.We can change the spec or manually serialize/deserialize
MsgType
: #114 (comment)The text was updated successfully, but these errors were encountered: