Merge rust-bitcoin/rust-bitcoin#2668: Automated nightly rustfmt (2024-04-07)

747ca578dd 2024-04-07 automated rustfmt nightly (Fmt Bot)

Pull request description:

  Automated nightly `rustfmt` changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action

ACKs for top commit:
  apoelstra:
    ACK 747ca578dd
  tcharding:
    ACK 747ca578dd

Tree-SHA512: c4387388f2cfcb9b9aacf7023d024379cbf073166f04fcba4b4c0d66972ee109f4c9f66e0d8ed1d57c419266680a9e6953a5e38ecb0aa937e6c368d59aaba976
This commit is contained in:
Andrew Poelstra 2024-04-08 20:57:02 +00:00
commit 163bf64fcc
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
5 changed files with 11 additions and 11 deletions

View File

@ -506,7 +506,10 @@ impl Address {
pub fn is_spend_standard(&self) -> bool { self.address_type().is_some() }
/// Constructs an [`Address`] from an output script (`scriptPubkey`).
pub fn from_script(script: &Script, params: impl AsRef<Params>) -> Result<Address, FromScriptError> {
pub fn from_script(
script: &Script,
params: impl AsRef<Params>,
) -> Result<Address, FromScriptError> {
let network = params.as_ref().network;
if script.is_p2pkh() {
let bytes = script.as_bytes()[3..23].try_into().expect("statically 20B long");

View File

@ -198,8 +198,8 @@ mod test {
use hex::test_hex_unwrap as hex;
use super::*;
use crate::consensus::params;
use crate::consensus::encode::serialize;
use crate::consensus::params;
#[test]
fn bitcoin_genesis_first_transaction() {

View File

@ -229,9 +229,7 @@ impl Magic {
pub fn to_bytes(self) -> [u8; 4] { self.0 }
/// Returns the magic bytes for the network defined by `params`.
pub fn from_params(params: impl AsRef<Params>) -> Self {
params.as_ref().network.into()
}
pub fn from_params(params: impl AsRef<Params>) -> Self { params.as_ref().network.into() }
}
impl FromStr for Magic {

View File

@ -18,7 +18,9 @@ use units::parse;
use crate::blockdata::block::BlockHash;
use crate::consensus::encode::{self, Decodable, Encodable};
use crate::consensus::Params;
use crate::error::{ContainsPrefixError, MissingPrefixError, ParseIntError, PrefixedHexError, UnprefixedHexError};
use crate::error::{
ContainsPrefixError, MissingPrefixError, ParseIntError, PrefixedHexError, UnprefixedHexError,
};
/// Implement traits and methods shared by `Target` and `Work`.
macro_rules! do_impl {

View File

@ -45,17 +45,14 @@ pub mod parse;
#[cfg(feature = "alloc")]
pub mod weight;
pub use self::amount::ParseAmountError;
#[doc(inline)]
pub use self::amount::{Amount, SignedAmount};
pub use self::amount::ParseAmountError;
#[cfg(feature = "alloc")]
pub use self::parse::ParseIntError;
#[cfg(feature = "alloc")]
#[doc(inline)]
pub use self::{
fee_rate::FeeRate,
weight::Weight,
};
pub use self::{fee_rate::FeeRate, weight::Weight};
#[rustfmt::skip]
#[allow(unused_imports)]