From 696a9be0a00a1a6de32007252b0061ffd5cc2a41 Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Fri, 26 May 2023 09:32:58 -0600 Subject: [PATCH] Update `zcash_primitives` to reflect argument changes to `parse_note_plaintext_without_memo_ovk` --- Cargo.toml | 2 +- components/zcash_note_encryption/src/lib.rs | 3 +-- zcash_primitives/src/sapling/note_encryption.rs | 2 -- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 59b1b607b..aeb85816b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,4 +22,4 @@ codegen-units = 1 zcash_encoding = { path = "components/zcash_encoding" } zcash_note_encryption = { path = "components/zcash_note_encryption" } incrementalmerkletree = { git = "https://github.com/zcash/incrementalmerkletree.git", rev = "62f0c9039b0bee94c16c40c272e19c5922290664" } -orchard = { git = "https://github.com/zcash/orchard.git", rev = "11b6858ac81a79675de205980155a49d6f92b71e" } +orchard = { git = "https://github.com/zcash/orchard.git", rev = "2a4f27c937fbcbdb66163e1bb426ce1fcb5bc4f8" } diff --git a/components/zcash_note_encryption/src/lib.rs b/components/zcash_note_encryption/src/lib.rs index 75fcb2fc4..6ad10c987 100644 --- a/components/zcash_note_encryption/src/lib.rs +++ b/components/zcash_note_encryption/src/lib.rs @@ -651,8 +651,7 @@ pub fn try_output_recovery_with_ock Domain for SaplingDomain

{ fn parse_note_plaintext_without_memo_ovk( &self, pk_d: &Self::DiversifiedTransmissionKey, - _esk: &Self::EphemeralSecretKey, - _ephemeral_key: &EphemeralKeyBytes, plaintext: &NotePlaintextBytes, ) -> Option<(Self::Note, Self::Recipient)> { sapling_parse_note_plaintext_without_memo(self, &plaintext.0, |diversifier| {