-
Notifications
You must be signed in to change notification settings - Fork 255
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
Extract zip321
crate from zcash_client_backend
#1143
Conversation
3744c97
to
e76d1db
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1143 +/- ##
==========================================
- Coverage 63.19% 63.12% -0.07%
==========================================
Files 124 124
Lines 14507 14716 +209
==========================================
+ Hits 9168 9290 +122
- Misses 5339 5426 +87 ☔ View full report in Codecov by Sentry. |
d68e667
to
7db4683
Compare
f6e75ef
to
c40d521
Compare
a5ad2e0
to
a25f937
Compare
c590e88
to
9eebca6
Compare
|
||
/// An error produced in legacy transparent address derivation | ||
#[cfg(feature = "transparent-inputs")] | ||
HdwalletError(hdwallet::error::Error), | ||
|
||
/// An error encountered in decoding a transparent address from its | ||
/// serialized form. | ||
#[cfg(feature = "transparent-inputs")] |
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.
Why is this specific to transparent-inputs? It seems as though it could also occur in principle due to support for transparent outputs, and the fact that it doesn't currently is just an implementation detail.
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.
It is unused if the transparent-inputs
feature is not enabled, so it doesn't need to clutter the public API; a user who doesn't enable that feature shouldn't have to write a match for that case.
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.
utACK with comments.
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.
utACK with comments.
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.
re-utACK with comments.
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.
Reviewed aeac544. The dbg!
removal is blocking.
Co-authored-by: str4d <thestr4d@gmail.com>
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.
utACK d2aa6cf
This depends upon
#1140 and #1142Fixes #1158