-
Notifications
You must be signed in to change notification settings - Fork 693
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
feat: add versioned and backwards-compatible server version to block proposal #5803
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, just two minor comments.
Co-authored-by: Brice <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noice!
Changelog conflict fixed, requesting re-approvals :) |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This PR introduces a pattern that we introduced previously to
BlockResponse
, which allows us to add new fields to theBlockProposal
struct without worrying about backwards/forwards issues with serialization.Critically, this PR only works because there is no place where we deserialize a
Vec<BlockProposal>
(just like we didn't/don't deserializeVec<BlockResponse>
). The only time we do anything like that is when deserializing StackerDB chunks, but the fact thatStackerDbChunk
"wraps" these structs is what makes this OK.The reason we need to add this pattern is because Vec-based deserialization will run into issues, because "old" versions of the code won't fully consume each item's bytes.
This new pattern does consume all of the item's bytes, even if the item was serialized using future code.