From 20d8dbd58652cd03133cb8cf60edc7e9c4ecbd4c Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 23 Sep 2024 13:42:42 +1000 Subject: [PATCH] Add missing line of whitespace As is customary put a line of whitespace before the `impl Blockhash` block. --- bitcoin/src/blockdata/block.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/bitcoin/src/blockdata/block.rs b/bitcoin/src/blockdata/block.rs index 6c6e73622..985d32894 100644 --- a/bitcoin/src/blockdata/block.rs +++ b/bitcoin/src/blockdata/block.rs @@ -30,6 +30,7 @@ hashes::hash_newtype! { pub struct WitnessCommitment(sha256d::Hash); } impl_hashencode!(BlockHash); + impl BlockHash { /// The "all zeros" blockhash. ///