Add missing re-exports to primitives crate root
There are re-exports in the bitcoin root from primitives that were not re-exported in the primitives crate root. Add the missing re-exports to primitives crate root.
This commit is contained in:
parent
21d1defced
commit
e5c74c38a2
|
@ -68,6 +68,7 @@ pub use self::{
|
||||||
block::{
|
block::{
|
||||||
Block, Checked as BlockChecked, Unchecked as BlockUnchecked, Validation as BlockValidation,
|
Block, Checked as BlockChecked, Unchecked as BlockUnchecked, Validation as BlockValidation,
|
||||||
},
|
},
|
||||||
|
script::{Script, ScriptBuf},
|
||||||
transaction::{Transaction, TxIn, TxOut},
|
transaction::{Transaction, TxIn, TxOut},
|
||||||
witness::Witness,
|
witness::Witness,
|
||||||
};
|
};
|
||||||
|
@ -76,10 +77,11 @@ pub use self::{
|
||||||
block::{BlockHash, Header as BlockHeader, WitnessCommitment},
|
block::{BlockHash, Header as BlockHeader, WitnessCommitment},
|
||||||
locktime::{absolute, relative},
|
locktime::{absolute, relative},
|
||||||
merkle_tree::{TxMerkleNode, WitnessMerkleNode},
|
merkle_tree::{TxMerkleNode, WitnessMerkleNode},
|
||||||
|
opcodes::Opcode,
|
||||||
pow::CompactTarget,
|
pow::CompactTarget,
|
||||||
sequence::Sequence,
|
sequence::Sequence,
|
||||||
taproot::{TapBranchTag, TapLeafHash, TapLeafTag, TapNodeHash, TapTweakHash, TapTweakTag},
|
taproot::{TapBranchTag, TapLeafHash, TapLeafTag, TapNodeHash, TapTweakHash, TapTweakTag},
|
||||||
transaction::{Txid, Wtxid},
|
transaction::{OutPoint, Txid, Wtxid},
|
||||||
};
|
};
|
||||||
|
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
|
|
Loading…
Reference in New Issue