-
Notifications
You must be signed in to change notification settings - Fork 17
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
Feature branch for 0.7.0 #123
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.
One blocking bug.
d5d609c
to
7860e5e
Compare
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 7860e5e
Includes changes to how accounts are stored and referenced. We now need to remember and provide the seed fingerprint; for now, given that we know we only create derived accounts from a single seed, we search for an account with a matching ZIP 32 account index.
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 70cce12
/// Returns: | ||
/// - `1` for `Ok(true)`. | ||
/// - `0` for `Ok(false)`. | ||
/// - `-1` for `Err(_)`. |
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.
Add safety documentation of arguments.
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
This fixes a bug in the `v_transactions` view related to changes in how primary key columns are named in the database.
Includes some renames, and a built-in seed relevancy API that we now use.
This enables generation of Orchard receivers for unified addresses by default.
Updates to: - zcash_primitives 0.15.0 - zcash_proofs 0.15.0 - zcash_client_backend 0.12.0 - zcash_client_sqlite 0.10.0
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 c918662
* | ||
* Returns: | ||
* - `1` for `Ok(true)`. | ||
* - `0` for `Ok(false)`. |
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.
Non-blocking: Ideally, documentation at this level would not depend on knowing the semantics of the corresponding Rust function (which isn't linked here).
@@ -1013,6 +1093,8 @@ struct FfiScanSummary *zcashlc_scan_blocks(const uint8_t *fs_block_cache_root, | |||
const uint8_t *db_data, | |||
uintptr_t db_data_len, | |||
int32_t from_height, | |||
const uint8_t *from_state, | |||
uintptr_t from_state_len, |
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.
These new parameters have not been documented in the safety section. Non-blocking but please file an issue if it isn't fixed now.
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.
Binary file not reviewed.
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.
Binary file not reviewed.
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. Comments are non-blocking, but please file an issue for the safety documentation comments if you merge as-is. [Done in #124.]
Payments to TEX addresses supported.