diff --git a/frost-core/src/keys/dkg.rs b/frost-core/src/keys/dkg.rs index 2c82657e..4373a91b 100644 --- a/frost-core/src/keys/dkg.rs +++ b/frost-core/src/keys/dkg.rs @@ -160,8 +160,8 @@ pub mod round1 { } /// Returns the secret coefficients. - #[cfg(feature = "internals")] - pub fn coefficients(&self) -> Vec> { + #[cfg_attr(feature = "internals", visibility::make(pub))] + pub(crate) fn coefficients(&self) -> Vec> { self.coefficients.iter().map(|s| s.0).collect() } }