Fix the known instance of #295

This commit is contained in:
Luke Parker
2023-07-13 13:53:41 -04:00
parent 6a4bccba74
commit c9bb284570
3 changed files with 6 additions and 7 deletions

View File

@@ -16,12 +16,6 @@ use crate::{Participant, DkgError, ThresholdCore, ThresholdKeys, validate_map};
/// Promote a set of keys to another Ciphersuite definition.
pub trait CiphersuitePromote<C2: Ciphersuite> {
#[doc(hidden)]
#[allow(non_snake_case)]
fn _bound_C2(_c2: C2) {
panic!()
}
fn promote(self) -> ThresholdKeys<C2>;
}