Stop deriving PartialEq for MetaAddr

This makes sure Ord and ParitalEq are always consistent.
This commit is contained in:
teor 2021-05-26 15:08:08 +10:00 committed by Deirdre Connolly
parent 078385ae00
commit bf6fe175dd
1 changed files with 9 additions and 1 deletions

View File

@ -106,7 +106,7 @@ impl PartialOrd for PeerAddrState {
/// An address with metadata on its advertised services and last-seen time.
///
/// [Bitcoin reference](https://en.bitcoin.it/wiki/Protocol_documentation#Network_address)
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
#[derive(Copy, Clone, Debug)]
pub struct MetaAddr {
/// The peer's address.
pub addr: SocketAddr,
@ -319,6 +319,14 @@ impl PartialOrd for MetaAddr {
}
}
impl PartialEq for MetaAddr {
fn eq(&self, other: &Self) -> bool {
self.cmp(other) == Ordering::Equal
}
}
impl Eq for MetaAddr {}
impl ZcashSerialize for MetaAddr {
fn zcash_serialize<W: Write>(&self, mut writer: W) -> Result<(), std::io::Error> {
writer.write_u32::<LittleEndian>(