From c8993881aebf6daa4656ae292ffa4cc20c368cad Mon Sep 17 00:00:00 2001 From: ying tong Date: Tue, 30 Nov 2021 09:09:04 -0500 Subject: [PATCH] kind::unified: Make ivk::Ivk, fvk::Fvk available outside the crate. Co-authored-by: Kris Nuttycombe --- components/zcash_address/src/kind/unified.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/zcash_address/src/kind/unified.rs b/components/zcash_address/src/kind/unified.rs index 61c747327..71f56200d 100644 --- a/components/zcash_address/src/kind/unified.rs +++ b/components/zcash_address/src/kind/unified.rs @@ -10,6 +10,8 @@ pub(crate) mod fvk; pub(crate) mod ivk; pub use address::Address; +pub use fvk::Fvk; +pub use ivk::Ivk; const PADDING_LEN: usize = 16;