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> {
442
442
/// signature implementation of bitcoin core. In average, this function
443
443
/// will perform two signing operations.
444
444
/// 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." ) ]
446
446
pub fn sign_low_r ( & self , msg : & Message , sk : & SecretKey ) -> Signature {
447
447
self . sign_grind_with_check ( msg, sk, compact_sig_has_zero_first_bit)
448
448
}
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ impl <C: Signing> Secp256k1<C> {
262
262
#[ inline]
263
263
#[ cfg( any( test, feature = "rand" ) ) ]
264
264
#[ 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 " ) ]
266
266
pub fn generate_schnorrsig_keypair < R : Rng + ?Sized > (
267
267
& self ,
268
268
rng : & mut R ,
You can’t perform that action at this time.
0 commit comments