From a59e0544ecc71c2d7a09ed7ef945a27b5416c4a0 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 8 Sep 2022 09:25:03 +1000 Subject: [PATCH] Remove trailing whitespace Whitespace only, no other changes. --- src/blockdata/block.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blockdata/block.rs b/src/blockdata/block.rs index 80972fc3..8d4b75c7 100644 --- a/src/blockdata/block.rs +++ b/src/blockdata/block.rs @@ -179,7 +179,7 @@ impl BlockVersion { /// BIP-9 soft fork signal bits mask. const VERSION_BITS_MASK: u32 = 0x1FFF_FFFF; /// 32bit value starting with `001` to use version bits. - /// + /// /// The value has the top three bits `001` which enables the use of version bits to signal for soft forks. const USE_VERSION_BITS: u32 = 0x2000_0000;