diff --git a/rs/interfaces/src/crypto/sign/canister_threshold_sig.rs b/rs/interfaces/src/crypto/sign/canister_threshold_sig.rs index 5aa9846422f..ba788df35f5 100644 --- a/rs/interfaces/src/crypto/sign/canister_threshold_sig.rs +++ b/rs/interfaces/src/crypto/sign/canister_threshold_sig.rs @@ -143,7 +143,7 @@ use std::collections::{BTreeMap, HashSet}; /// honest dealings. /// /// [`InitialIDkgDealings`]: ic_types::crypto::canister_threshold_sig::idkg::InitialIDkgDealings -/// [`EcdsaPreSignatureQuadruple`]: ic_types::crypto::canister_threshold_sig::PreSignatureQuadruple +/// [`EcdsaPreSignatureQuadruple`]: ic_types::crypto::canister_threshold_sig::EcdsaPreSignatureQuadruple /// [`Random`]: ic_types::crypto::canister_threshold_sig::idkg::IDkgTranscriptOperation::Random /// [`ReshareOfMasked`]: ic_types::crypto::canister_threshold_sig::idkg::IDkgTranscriptOperation::ReshareOfMasked /// [`ReshareOfUnmasked`]: ic_types::crypto::canister_threshold_sig::idkg::IDkgTranscriptOperation::ReshareOfUnmasked diff --git a/rs/types/types/src/crypto/canister_threshold_sig/idkg.rs b/rs/types/types/src/crypto/canister_threshold_sig/idkg.rs index cea0ca10f37..da7360b4596 100644 --- a/rs/types/types/src/crypto/canister_threshold_sig/idkg.rs +++ b/rs/types/types/src/crypto/canister_threshold_sig/idkg.rs @@ -763,7 +763,7 @@ pub enum IDkgTranscriptOperation { /// to produce a `masked` transcript. /// /// Useful to compute the product transcripts in - /// [`EcdsaPreSignatureQuadruple`][`crate::crypto::canister_threshold_sig::PreSignatureQuadruple`]: + /// [`EcdsaPreSignatureQuadruple`][`crate::crypto::canister_threshold_sig::EcdsaPreSignatureQuadruple`]: /// * Given a unmasked transcript for sharing a random value `kappa` and a masked transcript /// for sharing a random value `lambda`, compute the masked transcript for sharing the value /// `kappa * lambda`.