Go to file
Jack Grigg 1a562fb208 zcash_client_sqlite: Fix bug in `utxos_to_txos` migration
zcash/librustzcash@72d8df8e68 altered the
`v_received_notes` view to include transparent coins (renaming it to
`v_received_outputs`), and updated `v_transactions` to not separately
query transparent coins. The latter queried `v_received_notes` twice,
once to fetch notes received in a transaction, and again to fetch notes
spent in a transaction. The spent notes were obtained by joining on
the junction table `v_received_note_spends` to get the spent-in
transaction's ID. The commit retained the junction table join, but
didn't use it due to a typo, leading to notes being "spent-in" the
transaction they were received in. This bug had several effects:

- `account_balance_delta` showed `+change` for transactions in which a
  change note was received that had not yet been spent.
- `account_balance_delta` showed `0` for transactions in which all
  received notes had been subsequently spent.
- Transactions that spent funds with no change were omitted.
2024-07-23 17:09:59 +00:00
.github CI: Don't test `zcash_client_backend/lightwalletd-tonic` on WASM 2024-07-11 18:09:49 -07:00
.vscode Drop orchard unstable flag from VS Code settings 2024-06-18 08:14:39 -06:00
components remove duplicate words 2024-07-03 11:01:40 +08:00
devtools devtools: Show P2PKH <--> TEX conversion when inspecting one side 2024-07-22 13:56:59 +00:00
librustzcash
supply-chain devtools: Integrate `zcash-inspect` into workspace 2024-07-22 13:56:59 +00:00
zcash zcash 0.1.0 2024-07-15 15:31:57 +00:00
zcash_client_backend Merge pull request #1449 from zcash/doc-fix-without-features 2024-07-19 03:32:52 +01:00
zcash_client_sqlite zcash_client_sqlite: Fix bug in `utxos_to_txos` migration 2024-07-23 17:09:59 +00:00
zcash_extensions zcash_extensions 0.1.0 2024-07-15 14:19:58 +00:00
zcash_history
zcash_keys
zcash_primitives Merge pull request #1451 from zcash/devtools 2024-07-22 19:31:32 +01:00
zcash_proofs devtools: Integrate `zcash-inspect` into workspace 2024-07-22 13:56:59 +00:00
.editorconfig
.gitattributes
.gitignore
.gitlab-ci.yml
COPYING.md
Cargo.lock devtools: Integrate `zcash-inspect` into workspace 2024-07-22 13:56:59 +00:00
Cargo.toml devtools: Integrate `zcash-inspect` into workspace 2024-07-22 13:56:59 +00:00
LICENSE-APACHE
LICENSE-MIT
README.md
deny.toml zcash_client_backend: Add a Tor client using the Arti library 2024-07-18 01:25:17 +00:00
rust-toolchain.toml

README.md

Zcash Rust crates

This repository contains a (work-in-progress) set of Rust crates for working with Zcash.

Security Warnings

These libraries are currently under development and have not been fully-reviewed.

License

All code in this workspace is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.