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:
Jamil Lambert, PhD 2025-02-06 14:01:39 +00:00
parent 21d1defced
commit e5c74c38a2
No known key found for this signature in database
GPG Key ID: 54DC29234AB5D2C0
1 changed files with 3 additions and 1 deletions

View File

@ -68,6 +68,7 @@ pub use self::{
block::{
Block, Checked as BlockChecked, Unchecked as BlockUnchecked, Validation as BlockValidation,
},
script::{Script, ScriptBuf},
transaction::{Transaction, TxIn, TxOut},
witness::Witness,
};
@ -76,10 +77,11 @@ pub use self::{
block::{BlockHash, Header as BlockHeader, WitnessCommitment},
locktime::{absolute, relative},
merkle_tree::{TxMerkleNode, WitnessMerkleNode},
opcodes::Opcode,
pow::CompactTarget,
sequence::Sequence,
taproot::{TapBranchTag, TapLeafHash, TapLeafTag, TapNodeHash, TapTweakHash, TapTweakTag},
transaction::{Txid, Wtxid},
transaction::{OutPoint, Txid, Wtxid},
};
#[rustfmt::skip]