Run cargo fmt

A few trivial formatting errors have snuck into the codebase.

Run `cargo +nightly fmt`
This commit is contained in:
Tobin C. Harding 2022-09-08 15:48:21 +10:00
parent ed9012c25c
commit 0e425acad3
2 changed files with 2 additions and 3 deletions

View File

@ -43,8 +43,8 @@ use bitcoin::util::bip32::{
};
use bitcoin::util::psbt::{self, Input, Psbt, PsbtSighashType};
use bitcoin::{
address, Address, Amount, Network, OutPoint, PrivateKey, PublicKey, Script,
Sequence, Transaction, TxIn, TxOut, Txid, Witness,
address, Address, Amount, Network, OutPoint, PrivateKey, PublicKey, Script, Sequence,
Transaction, TxIn, TxOut, Txid, Witness,
};
use self::psbt_sign::*;

View File

@ -117,7 +117,6 @@ macro_rules! debug_from_display {
};
}
pub(crate) use debug_from_display;
#[cfg(test)]
pub(crate) use test_macros::*;