Skip to content

Commit 4dede13

Browse files
committed
Merge #611: Impl Ord and PartialOrd for RecoverableSignature
dbc5465 Impl Ord and PartialOrd for RecoverableSignature (benthecarman) Pull request description: ACKs for top commit: apoelstra: ACK dbc5465 oops, sorry! Tree-SHA512: decda6b6e7a4929147f5ca00cb2802037c6a297aa816c253e181f1a85ec9e46958469b9d481e2b4aba2c6d86def80bba33a62c507459d82c86cfed4271a23eea
2 parents f96fcd8 + dbc5465 commit 4dede13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ecdsa/recovery.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ use crate::ffi::recovery as ffi;
1313
use crate::{key, Error, Message, Secp256k1, Signing, Verification};
1414

1515
/// A tag used for recovering the public key from a compact signature.
16-
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
16+
#[derive(Copy, Clone, PartialEq, Eq, Debug, Ord, PartialOrd)]
1717
pub struct RecoveryId(i32);
1818

1919
/// An ECDSA signature with a recovery ID for pubkey recovery.
20-
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
20+
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash, Ord, PartialOrd)]
2121
pub struct RecoverableSignature(ffi::RecoverableSignature);
2222

2323
impl RecoveryId {

0 commit comments

Comments
 (0)