From 69aac83837f6384c6d017061cc8acf89cb585122 Mon Sep 17 00:00:00 2001 From: StackOverflowExcept1on <109800286+StackOverflowExcept1on@users.noreply.github.com> Date: Tue, 1 Oct 2024 15:59:08 +0300 Subject: [PATCH] Add `internal` feature for `validate_num_of_signers` --- frost-core/src/keys.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frost-core/src/keys.rs b/frost-core/src/keys.rs index 5a884e42..9112e108 100644 --- a/frost-core/src/keys.rs +++ b/frost-core/src/keys.rs @@ -760,6 +760,8 @@ where } } +/// Validates the number of signers. +#[cfg_attr(feature = "internals", visibility::make(pub))] fn validate_num_of_signers( min_signers: u16, max_signers: u16,