Cleanup imports
We do not want to imports from within the lib and external of lib in the same line
This commit is contained in:
parent
382c8f9e4f
commit
ebdeed086e
|
@ -13,8 +13,7 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
use prelude::*;
|
use prelude::*;
|
||||||
|
use io;
|
||||||
use ::{EcdsaSig, io};
|
|
||||||
|
|
||||||
use secp256k1;
|
use secp256k1;
|
||||||
use blockdata::script::Script;
|
use blockdata::script::Script;
|
||||||
|
@ -30,10 +29,9 @@ use util::psbt::raw;
|
||||||
use util::psbt::serialize::Deserialize;
|
use util::psbt::serialize::Deserialize;
|
||||||
use util::psbt::{Error, error};
|
use util::psbt::{Error, error};
|
||||||
|
|
||||||
use ::{SchnorrSig};
|
|
||||||
use util::taproot::{ControlBlock, LeafVersion, TapLeafHash, TapBranchHash};
|
use util::taproot::{ControlBlock, LeafVersion, TapLeafHash, TapBranchHash};
|
||||||
use util::sighash;
|
use util::sighash;
|
||||||
use {EcdsaSigHashType, SchnorrSigHashType};
|
use {EcdsaSigHashType, SchnorrSigHashType, EcdsaSig, SchnorrSig};
|
||||||
|
|
||||||
/// Type: Non-Witness UTXO PSBT_IN_NON_WITNESS_UTXO = 0x00
|
/// Type: Non-Witness UTXO PSBT_IN_NON_WITNESS_UTXO = 0x00
|
||||||
const PSBT_IN_NON_WITNESS_UTXO: u8 = 0x00;
|
const PSBT_IN_NON_WITNESS_UTXO: u8 = 0x00;
|
||||||
|
|
Loading…
Reference in New Issue