blockdata: Derive PartialOrd, Ord and Hash for BlockHeader

This commit is contained in:
Steven Roose 2021-11-14 19:03:02 -06:00 committed by 0xb10c
parent c7b8d4cae8
commit a9a39c4b08
No known key found for this signature in database
GPG Key ID: E2FFD5B1D88CA97D
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ use crate::internal_macros::impl_consensus_encoding;
/// ### Bitcoin Core References
///
/// * [CBlockHeader definition](https://github.com/bitcoin/bitcoin/blob/345457b542b6a980ccfbc868af0970a6f91d1b82/src/primitives/block.h#L20)
#[derive(Copy, PartialEq, Eq, Clone, Debug)]
#[derive(Copy, PartialEq, Eq, Clone, Debug, PartialOrd, Ord, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(crate = "actual_serde"))]
pub struct BlockHeader {