From ebdeed086ebeaf416912956ebf8178b1c0b005e3 Mon Sep 17 00:00:00 2001 From: sanket1729 Date: Fri, 14 Jan 2022 04:07:34 +0530 Subject: [PATCH] Cleanup imports We do not want to imports from within the lib and external of lib in the same line --- src/util/psbt/map/input.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/util/psbt/map/input.rs b/src/util/psbt/map/input.rs index bc6772b7..8d09877a 100644 --- a/src/util/psbt/map/input.rs +++ b/src/util/psbt/map/input.rs @@ -13,8 +13,7 @@ // use prelude::*; - -use ::{EcdsaSig, io}; +use io; use secp256k1; use blockdata::script::Script; @@ -30,10 +29,9 @@ use util::psbt::raw; use util::psbt::serialize::Deserialize; use util::psbt::{Error, error}; -use ::{SchnorrSig}; use util::taproot::{ControlBlock, LeafVersion, TapLeafHash, TapBranchHash}; use util::sighash; -use {EcdsaSigHashType, SchnorrSigHashType}; +use {EcdsaSigHashType, SchnorrSigHashType, EcdsaSig, SchnorrSig}; /// Type: Non-Witness UTXO PSBT_IN_NON_WITNESS_UTXO = 0x00 const PSBT_IN_NON_WITNESS_UTXO: u8 = 0x00;