From 658cf92a4ba615cf467818ae9d7f6fbb723d8c4b Mon Sep 17 00:00:00 2001 From: fluidvanadium Date: Tue, 23 Jul 2024 03:08:16 +0000 Subject: [PATCH] pub fn UnifiedSpendingKey::from_checked_parts --- zcash_keys/src/keys.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zcash_keys/src/keys.rs b/zcash_keys/src/keys.rs index 151b9ca5b8..a62a55649d 100644 --- a/zcash_keys/src/keys.rs +++ b/zcash_keys/src/keys.rs @@ -230,7 +230,7 @@ impl UnifiedSpendingKey { /// Construct a USK from its constituent parts, after verifying that UIVK derivation can /// succeed. - fn from_checked_parts( + pub fn from_checked_parts( #[cfg(feature = "transparent-inputs")] transparent: legacy::AccountPrivKey, #[cfg(feature = "sapling")] sapling: sapling::ExtendedSpendingKey, #[cfg(feature = "orchard")] orchard: orchard::keys::SpendingKey,