Merge rust-bitcoin/rust-secp256k1#442: Fix depreciation warning typos
997b4b35a9
Fix depreciation warning typos (Tibo-lg) Pull request description: It got me confused for a second, might save a few minutes to the next person :). ACKs for top commit: apoelstra: ACK997b4b35a9
Tree-SHA512: 313409bec0841c1dae6dd54511fad5ecf3ffbc48ea8df18d0916a299f60f38b7fd204f7d8720a89539ad8fc329bbea5f6eabf573278f773a0b982f72af31acf2
This commit is contained in:
commit
712a378a7c
|
@ -442,7 +442,7 @@ impl<C: Signing> Secp256k1<C> {
|
|||
/// signature implementation of bitcoin core. In average, this function
|
||||
/// will perform two signing operations.
|
||||
/// Requires a signing capable context.
|
||||
#[deprecated(since = "0.21.0", note = "Use sign_ecdsa_grind_r instead.")]
|
||||
#[deprecated(since = "0.21.0", note = "Use sign_ecdsa_low_r instead.")]
|
||||
pub fn sign_low_r(&self, msg: &Message, sk: &SecretKey) -> Signature {
|
||||
self.sign_grind_with_check(msg, sk, compact_sig_has_zero_first_bit)
|
||||
}
|
||||
|
|
|
@ -262,7 +262,7 @@ impl <C: Signing> Secp256k1<C> {
|
|||
#[inline]
|
||||
#[cfg(any(test, feature = "rand"))]
|
||||
#[cfg_attr(docsrs, doc(cfg(feature = "rand")))]
|
||||
#[deprecated(since = "0.21.0", note = "Use kp = KeyPair::new() and kp.public_key()")]
|
||||
#[deprecated(since = "0.21.0", note = "Use kp = KeyPair::new() and kp.x_only_public_key().0")]
|
||||
pub fn generate_schnorrsig_keypair<R: Rng + ?Sized>(
|
||||
&self,
|
||||
rng: &mut R,
|
||||
|
|
Loading…
Reference in New Issue