Skip to content

Commit 94dba95

Browse files
authored
frost-core: fix visibility of coefficients() (#842)
1 parent f7dcad9 commit 94dba95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frost-core/src/keys/dkg.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ pub mod round1 {
160160
}
161161

162162
/// Returns the secret coefficients.
163-
#[cfg(feature = "internals")]
164-
pub fn coefficients(&self) -> Vec<Scalar<C>> {
163+
#[cfg_attr(feature = "internals", visibility::make(pub))]
164+
pub(crate) fn coefficients(&self) -> Vec<Scalar<C>> {
165165
self.coefficients.iter().map(|s| s.0).collect()
166166
}
167167
}

0 commit comments

Comments
 (0)