zcash_client_sqlite: `impl {Clone, Copy, Debug, PartialEq, Eq} for BlockMeta`

This commit is contained in:
Jack Grigg 2023-01-25 15:28:50 +00:00
parent e37f458a70
commit 9226c98dd5
2 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,8 @@ and this library adheres to Rust's notion of
`WalletDb`. This function does not delete the files referenced by the rows
that might be present and are deleted by this function call.
- `zcash_client_sqlite::FsBlockDb::find_block`
- `zcash_client_sqlite::chain`:
- `impl {Clone, Copy, Debug, PartialEq, Eq} for BlockMeta`
### Changed
- MSRV is now 1.60.0.

View File

@ -76,6 +76,7 @@ where
/// Data structure representing a row in the block metadata database.
#[cfg(feature = "unstable")]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct BlockMeta {
pub height: BlockHeight,
pub block_hash: BlockHash,