We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 861b6b2 commit 871f7c3Copy full SHA for 871f7c3
schnorr_fun/src/frost/chilldkg/certpedpop/certificate.rs
@@ -352,6 +352,16 @@ impl<S: CertificationScheme> Certifier<S> {
352
Ok(())
353
}
354
355
+ /// Get the aggregated keygen input
356
+ pub fn agg_input(&self) -> &encpedpop::AggKeygenInput {
357
+ &self.agg_input
358
+ }
359
+
360
+ /// Get the set of required keys for certification
361
+ pub fn required_keys(&self) -> &BTreeSet<Point> {
362
+ &self.required_keys
363
364
365
/// Check if all required certificates have been received
366
pub fn is_finished(&self) -> bool {
367
self.certificates.len() == self.required_keys.len()
0 commit comments