-
Notifications
You must be signed in to change notification settings - Fork 269
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
fix: Implement visit_bytes for the Ed25519PublicKey deserialization #4499
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4499 +/- ##
==========================================
- Coverage 85.37% 85.36% -0.01%
==========================================
Files 284 284
Lines 31885 31892 +7
==========================================
+ Hits 27222 27225 +3
- Misses 4663 4667 +4 ☔ View full report in Codecov by Sentry. |
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.
Approving but I would enjoy having a test 🙂
It's in #4500, though my commit has been squashed in there as well. |
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, but definitely needs a test.
This fixes the deserialization of the SenderData since it switched to the base64 encoding for serialization of the master key in one of its variants. The issue was introduced in 5ff556f.
ddd18d1
to
ba35b61
Compare
Thanks for the test @BillCarsonFr. |
This fixes the deserialization of the SenderData since it switched to the base64 encoding for serialization of the master key in one of its variants.
The issue was introduced in 5ff556f (#4450).