diff --git a/ferveo/src/pvss.rs b/ferveo/src/pvss.rs index 1cabb847..903c4b62 100644 --- a/ferveo/src/pvss.rs +++ b/ferveo/src/pvss.rs @@ -373,18 +373,6 @@ impl PubliclyVerifiableSS { ) } - // TODO: Consider deprecating to use PrivateKeyShare method directly - pub fn create_updated_private_key_share( - &self, - validator_keypair: &Keypair, - share_index: u32, - share_updates: &[ShareUpdate], - ) -> Result> { - // Retrieve the private key share and apply the updates - Ok(self - .decrypt_private_key_share(validator_keypair, share_index)? - .create_updated_key_share(share_updates)) - } } #[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq)]