diff --git a/bitcoin/src/blockdata/block.rs b/bitcoin/src/blockdata/block.rs index 391b0992a..c4825b601 100644 --- a/bitcoin/src/blockdata/block.rs +++ b/bitcoin/src/blockdata/block.rs @@ -249,12 +249,15 @@ impl Block { let cb = self.coinbase().ok_or(Bip34Error::NotPresent)?; let input = cb.input.first().ok_or(Bip34Error::NotPresent)?; - let push = input.script_sig.instructions_minimal() + let push = input + .script_sig + .instructions_minimal() .next() .ok_or(Bip34Error::NotPresent)? .map_err(to_bip34_error)?; match (push.script_num(), push.push_bytes().map(|b| b.read_scriptint())) { - (Some(num), Some(Ok(_)) | None) => Ok(num.try_into().map_err(|_| Bip34Error::NegativeHeight)?), + (Some(num), Some(Ok(_)) | None) => + Ok(num.try_into().map_err(|_| Bip34Error::NegativeHeight)?), (_, Some(Err(err))) => Err(to_bip34_error(err)), (None, _) => Err(Bip34Error::NotPresent), } diff --git a/bitcoin/src/blockdata/script/push_bytes.rs b/bitcoin/src/blockdata/script/push_bytes.rs index d597cb79d..59f651314 100644 --- a/bitcoin/src/blockdata/script/push_bytes.rs +++ b/bitcoin/src/blockdata/script/push_bytes.rs @@ -64,9 +64,7 @@ mod primitive { } /// Constructs an empty `&PushBytes`. - pub fn empty() -> &'static Self { - Self::from_slice_unchecked(&[]) - } + pub fn empty() -> &'static Self { Self::from_slice_unchecked(&[]) } /// Returns the underlying bytes. pub fn as_bytes(&self) -> &[u8] { &self.0 } diff --git a/bitcoin/src/lib.rs b/bitcoin/src/lib.rs index 9d9dc9628..0a26fa1c2 100644 --- a/bitcoin/src/lib.rs +++ b/bitcoin/src/lib.rs @@ -118,7 +118,7 @@ pub mod taproot; // that it is available in the event that we add some functionality there. #[doc(inline)] pub use primitives::{ - block::{BlockHash, WitnessCommitment, Header as BlockHeader}, + block::{BlockHash, Header as BlockHeader, WitnessCommitment}, merkle_tree::{TxMerkleNode, WitnessMerkleNode}, opcodes::Opcode, pow::CompactTarget, // No `pow` module outside of `primitives`. @@ -141,11 +141,13 @@ pub use crate::{ bip158::{FilterHash, FilterHeader}, bip32::XKeyIdentifier, crypto::ecdsa, - crypto::key::{self, PrivateKey, PubkeyHash, PublicKey, CompressedPublicKey, WPubkeyHash, XOnlyPublicKey}, + crypto::key::{ + self, CompressedPublicKey, PrivateKey, PubkeyHash, PublicKey, WPubkeyHash, XOnlyPublicKey, + }, crypto::sighash::{self, LegacySighash, SegwitV0Sighash, TapSighash, TapSighashTag}, merkle_tree::MerkleBlock, - network::{Network, NetworkKind, TestnetVersion}, network::params::{self, Params}, + network::{Network, NetworkKind, TestnetVersion}, pow::{Target, Work}, psbt::Psbt, sighash::{EcdsaSighashType, TapSighashType}, diff --git a/chacha20_poly1305/src/lib.rs b/chacha20_poly1305/src/lib.rs index 04d7f3771..330f5389e 100644 --- a/chacha20_poly1305/src/lib.rs +++ b/chacha20_poly1305/src/lib.rs @@ -3,7 +3,6 @@ //! Combine the ChaCha20 stream cipher with the Poly1305 message authentication code //! to form an authenticated encryption with additional data (AEAD) algorithm. #![no_std] - // Experimental features we need. #![cfg_attr(docsrs, feature(doc_auto_cfg))] // Coding conventions. diff --git a/units/src/amount/signed.rs b/units/src/amount/signed.rs index 2d763335f..d9c9efe97 100644 --- a/units/src/amount/signed.rs +++ b/units/src/amount/signed.rs @@ -67,10 +67,7 @@ impl SignedAmount { pub fn from_int_btc(btc: i64) -> Result { match btc.checked_mul(100_000_000) { Some(amount) => Ok(SignedAmount::from_sat(amount)), - None => Err(OutOfRangeError { - is_signed: true, - is_greater_than_max: true, - }) + None => Err(OutOfRangeError { is_signed: true, is_greater_than_max: true }), } } diff --git a/units/src/amount/unsigned.rs b/units/src/amount/unsigned.rs index 28cbf235e..f217c2371 100644 --- a/units/src/amount/unsigned.rs +++ b/units/src/amount/unsigned.rs @@ -77,10 +77,7 @@ impl Amount { pub fn from_int_btc(btc: u64) -> Result { match btc.checked_mul(100_000_000) { Some(amount) => Ok(Amount::from_sat(amount)), - None => Err(OutOfRangeError { - is_signed: false, - is_greater_than_max: true, - }) + None => Err(OutOfRangeError { is_signed: false, is_greater_than_max: true }), } }