We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89af227 commit e4a1c0fCopy full SHA for e4a1c0f
mithril-stm/src/bls_multi_signature/verification_key.rs
@@ -164,7 +164,10 @@ impl BlsVerificationKeyProofOfPossession {
164
/// manually.
165
// If we are really looking for performance improvements, we can combine the
166
// two final exponentiations (for verifying k1 and k2) into a single one.
167
- #[deprecated(since = "0.5.0", note = "Use `verify_proof_of_possession` instead")]
+ #[deprecated(
168
+ since = "0.5.0",
169
+ note = "The verification of the proof of possession is not part of the public API any more"
170
+ )]
171
pub fn check(&self) -> Result<(), MultiSignatureError> {
172
Self::verify_proof_of_possession(self)
173
}
0 commit comments