remove unused impl

This commit is contained in:
Sergio Chouhy 2026-04-24 00:36:25 -03:00
parent e19c9ff20a
commit 9c90a6d182

View File

@ -105,26 +105,6 @@ impl ChildKeysPrivate {
}
}
#[expect(
clippy::single_char_lifetime_names,
reason = "TODO add meaningful name"
)]
impl<'a> From<&'a ChildKeysPrivate> for &'a (KeyChain, Vec<(Identifier, nssa::Account)>) {
fn from(value: &'a ChildKeysPrivate) -> Self {
&value.value
}
}
#[expect(
clippy::single_char_lifetime_names,
reason = "TODO add meaningful name"
)]
impl<'a> From<&'a mut ChildKeysPrivate> for &'a mut (KeyChain, Vec<(Identifier, nssa::Account)>) {
fn from(value: &'a mut ChildKeysPrivate) -> Self {
&mut value.value
}
}
impl KeyTreeNode for ChildKeysPrivate {
fn from_seed(seed: [u8; 64]) -> Self {
Self::root(seed)