Merge rust-bitcoin/rust-bitcoin#1249: Run cargo fmt
0e425acad3
Run cargo fmt (Tobin C. Harding) Pull request description: A few trivial formatting errors have snuck into the codebase. Run `cargo +nightly fmt` FTR we have an open PR to run formatter in CI: https://github.com/rust-bitcoin/rust-bitcoin/pull/1111 ACKs for top commit: Kixunil: ACK0e425acad3
apoelstra: ACK0e425acad3
Tree-SHA512: b42ba57fab25baf6ed7cfb3c207389df09d192840c591178fb3f43f1f0ff3e9381e1416c976fa4da8104dd3c18a32f54338ed98b997a31aba5c37a1b6c261210
This commit is contained in:
commit
7056490de2
|
@ -43,8 +43,8 @@ use bitcoin::util::bip32::{
|
||||||
};
|
};
|
||||||
use bitcoin::util::psbt::{self, Input, Psbt, PsbtSighashType};
|
use bitcoin::util::psbt::{self, Input, Psbt, PsbtSighashType};
|
||||||
use bitcoin::{
|
use bitcoin::{
|
||||||
address, Address, Amount, Network, OutPoint, PrivateKey, PublicKey, Script,
|
address, Address, Amount, Network, OutPoint, PrivateKey, PublicKey, Script, Sequence,
|
||||||
Sequence, Transaction, TxIn, TxOut, Txid, Witness,
|
Transaction, TxIn, TxOut, Txid, Witness,
|
||||||
};
|
};
|
||||||
|
|
||||||
use self::psbt_sign::*;
|
use self::psbt_sign::*;
|
||||||
|
|
|
@ -117,7 +117,6 @@ macro_rules! debug_from_display {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
pub(crate) use debug_from_display;
|
pub(crate) use debug_from_display;
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub(crate) use test_macros::*;
|
pub(crate) use test_macros::*;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue