Skip to content

Commit

Permalink
Remove SQL that can only run on newer SQLite (#1571)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuttycom authored Sep 3, 2024
1 parent ee07a83 commit 94d36ca
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this library adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
- Migrated to `zcash_client_sqlite 0.11.2` to remove use of a database feature
that prevented use of Zashi on older devices.

## [2.2.1] - 2024-08-22

### Fixed
Expand Down
5 changes: 3 additions & 2 deletions backend-lib/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ orchard = "0.9"
sapling = { package = "sapling-crypto", version = "0.2", default-features = false }
zcash_address = "0.4"
zcash_client_backend = { version = "0.13", features = ["orchard", "tor", "transparent-inputs", "unstable"] }
zcash_client_sqlite = { version = "0.11.1", features = ["orchard", "transparent-inputs", "unstable"] }
zcash_client_sqlite = { version = "0.11.2", features = ["orchard", "transparent-inputs", "unstable"] }
zcash_primitives = "0.16"
zcash_proofs = "0.16"

Expand Down

0 comments on commit 94d36ca

Please sign in to comment.