File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -442,7 +442,7 @@ impl<C: Signing> Secp256k1<C> {
442442 /// signature implementation of bitcoin core. In average, this function
443443 /// will perform two signing operations.
444444 /// Requires a signing capable context.
445- #[ deprecated( since = "0.21.0" , note = "Use sign_ecdsa_grind_r instead." ) ]
445+ #[ deprecated( since = "0.21.0" , note = "Use sign_ecdsa_low_r instead." ) ]
446446 pub fn sign_low_r ( & self , msg : & Message , sk : & SecretKey ) -> Signature {
447447 self . sign_grind_with_check ( msg, sk, compact_sig_has_zero_first_bit)
448448 }
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ impl <C: Signing> Secp256k1<C> {
262262 #[ inline]
263263 #[ cfg( any( test, feature = "rand" ) ) ]
264264 #[ cfg_attr( docsrs, doc( cfg( feature = "rand" ) ) ) ]
265- #[ deprecated( since = "0.21.0" , note = "Use kp = KeyPair::new() and kp.public_key() " ) ]
265+ #[ deprecated( since = "0.21.0" , note = "Use kp = KeyPair::new() and kp.x_only_public_key().0 " ) ]
266266 pub fn generate_schnorrsig_keypair < R : Rng + ?Sized > (
267267 & self ,
268268 rng : & mut R ,
You can’t perform that action at this time.
0 commit comments