Derive PartialEq for Keypair (#595)

* Derive `PartialEq` for Keypair

* Silence clippy warning
This commit is contained in:
Pawan Dhananjay 2019-11-11 04:58:22 +05:30 committed by Paul Hauner
parent f5d0ee0ed7
commit 613fdbeda6

View File

@ -3,7 +3,7 @@ use serde_derive::{Deserialize, Serialize};
use std::fmt;
use std::hash::{Hash, Hasher};
#[derive(Debug, Clone, Eq, Serialize, Deserialize)]
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct Keypair {
pub sk: SecretKey,
pub pk: PublicKey,
@ -22,12 +22,7 @@ impl Keypair {
}
}
impl PartialEq for Keypair {
fn eq(&self, other: &Keypair) -> bool {
self == other
}
}
#[allow(clippy::derive_hash_xor_eq)]
impl Hash for Keypair {
/// Note: this is distinct from consensus serialization, it will produce a different hash.
///