From 4873e2586f8e85297954da2f9841d98d0089e2bc Mon Sep 17 00:00:00 2001 From: str4d Date: Thu, 25 Jan 2024 19:17:21 +0000 Subject: [PATCH] zcash_primitives: Adjust doc comment on `BlockHash` Co-authored-by: Daira Emma Hopwood --- zcash_primitives/src/block.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zcash_primitives/src/block.rs b/zcash_primitives/src/block.rs index 2b332016a..e24dc1d2d 100644 --- a/zcash_primitives/src/block.rs +++ b/zcash_primitives/src/block.rs @@ -12,7 +12,7 @@ pub use equihash; /// The identifier for a Zcash block. /// -/// Derived from a [`BlockHeader`]. +/// This is the SHA-256d hash of the encoded [`BlockHeader`]. #[derive(Clone, Copy, PartialEq, Eq, Hash)] pub struct BlockHash(pub [u8; 32]);