You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mithril-common/src/certificate_chain/certificate_retriever.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,16 +10,16 @@ use mockall::automock;
10
10
/// [CertificateRetriever] related errors.
11
11
#[derive(Error,Debug)]
12
12
pubenumCertificateRetrieverError{
13
-
/// Error raised when a [CertificateRetriever] tries to retrieve a [certificate](https://mithril.network/mithril-common/doc/mithril_common/entities/struct.Certificate.html)
13
+
/// Error raised when a [CertificateRetriever] tries to retrieve a [Certificate]
14
14
#[error("general error: '{0}'")]
15
15
General(String),
16
16
}
17
17
18
-
/// CertificateRetriever is in charge of retrieving a Certificate given its hash
18
+
/// CertificateRetriever is in charge of retrieving a [Certificate] given its hash
Copy file name to clipboardExpand all lines: mithril-common/src/crypto_helper/genesis.rs
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,8 @@ pub enum ProtocolGenesisError {
14
14
SignatureVerification(#[from]SignatureError),
15
15
}
16
16
17
-
/// A protocol Genesis Signer that is responsible for signing the [Genesis Certificate](https://mithril.network/doc/mithril/mithril-protocol/certificates#the-certificate-chain-design)
17
+
/// A protocol Genesis Signer that is responsible for signing the
/// A protocol Genesis Verifier that is responsible for verifying the [Genesis Certificate](https://mithril.network/doc/mithril/mithril-protocol/certificates#the-certificate-chain-design)
80
+
/// A protocol Genesis Verifier that is responsible for verifying the
0 commit comments