Skip to content
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

zcash_client_sqlite crate #246

Merged
merged 21 commits into from Jul 9, 2020
Merged

zcash_client_sqlite crate #246

merged 21 commits into from Jul 9, 2020

Commits on Jun 25, 2020

  1. Configuration menu
    Copy the full SHA
    c0cf55c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c8b70e5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    72dd76e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3ef03f2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    34725df View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    02324fb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a2de5d7 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f0ce0c5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    380c2f7 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4cfdace View commit details
    Browse the repository at this point in the history
  11. zcash_client_sqlite: Store is_change as INTEGER instead of BOOLEAN

    Needed because SQLite internally stores BOOLEAN as INTEGER anyway, but
    this causes problems with newer versions of Room on Android.
    str4d committed Jun 25, 2020
    Configuration menu
    Copy the full SHA
    c8074d4 View commit details
    Browse the repository at this point in the history
  12. Added a limit value for scanning.

    This provides a way to expose a more fine grained measure of scan progress. For example, by scanning in batches of 100 blocks, rather than everything that is pending.
    Kevin Gorham authored and str4d committed Jun 25, 2020
    Configuration menu
    Copy the full SHA
    9363ec3 View commit details
    Browse the repository at this point in the history
  13. zcash_client_sqlite: Update received note during scan if present

    Fixes a bug where rewinding a block that contained a received note would
    cause a constraint violation.
    str4d committed Jun 25, 2020
    Configuration menu
    Copy the full SHA
    3036064 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    b1a2e81 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    131e00e View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2020

  1. Upgrade to rusqlite 0.23

    Requires bumping the MSRV to 1.40.0 because libsqlite3-sys uses features
    introduced in that version. remove_dir_all can similarly be unpinned.
    str4d committed Jun 26, 2020
    Configuration menu
    Copy the full SHA
    0a61db0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e910788 View commit details
    Browse the repository at this point in the history
  3. zcash_proofs: Add API for downloading the Sapling parameters

    Includes an example that exposes the API as a binary.
    str4d committed Jun 26, 2020
    Configuration menu
    Copy the full SHA
    9012672 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bbc3ec5 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2020

  1. zcash_client_sqlite: Implement outgoing viewing key policies

    This enables an SQLite light client to specify whether recipient history
    can be recovered from the block chain (and by what outgoing viewing key)
    with per-transaction granularity.
    str4d committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    8188fae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c250ca View commit details
    Browse the repository at this point in the history