Update to `zcash_keys 0.8`, `zcash_client_backend 0.18` (#9395)

This commit is contained in:
Kris Nuttycombe 2025-04-08 15:31:28 -06:00 committed by GitHub
parent c9a4ae41f9
commit a9166b6736
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 8 deletions

View File

@ -5922,9 +5922,9 @@ dependencies = [
[[package]]
name = "zcash_client_backend"
version = "0.17.0"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd14f1ef34cacef42dd2149783dad3d1f46949cb72da786f6ab13d6aa142020b"
checksum = "17d9eb503faa9f72a1b6575f884e524ac43e816b275a28445e9ecb9c59e46771"
dependencies = [
"base64 0.22.1",
"bech32",
@ -5984,9 +5984,9 @@ dependencies = [
[[package]]
name = "zcash_keys"
version = "0.7.0"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2af2839a7bb0489ccf0db9fb12c67234dd83e4a3b81ef50a10beecf1e852a18e"
checksum = "cb50fbc9d2d5e5997eefa934297be78312552f393149aa042ab12ac42031070c"
dependencies = [
"bech32",
"blake2b_simd",

View File

@ -26,10 +26,10 @@ incrementalmerkletree = { version = "0.8.2", features = ["legacy-api"] }
orchard = "0.11.0"
sapling-crypto = "0.5.0"
zcash_address = "0.7.0"
zcash_client_backend = "0.17.0"
zcash_client_backend = "0.18"
zcash_encoding = "0.3.0"
zcash_history = "0.4.0"
zcash_keys = "0.7.0"
zcash_keys = "0.8"
zcash_primitives = "0.22.0"
zcash_proofs = "0.22.0"
zcash_transparent = "0.2.3"

View File

@ -62,8 +62,8 @@ pub fn main() {
)
.expect("TX fetched via RPC should be deserializable from raw bytes");
for output in
decrypt_transaction(&zp_network, height, &tx, &ufvks).sapling_outputs()
for output in decrypt_transaction(&zp_network, Some(height), None, &tx, &ufvks)
.sapling_outputs()
{
let memo = memo_bytes_to_string(output.memo().as_array());