Merge rust-bitcoin/rust-bitcoin#3551: primitives: Add missing re-exports

2b7cb04265 primitives: Add missing re-exports (Tobin C. Harding)

Pull request description:

  Add re-exports of types from `taproot` and `merkle_tree`.

ACKs for top commit:
  jamillambert:
    ACK 2b7cb04265
  apoelstra:
    ACK 2b7cb04265cdb2d62c1bcc645e19d8bafa132b4b; successfully ran local tests

Tree-SHA512: e837c8e7bfda3e8c5510a15ba19b2b0b433e9e87c961ab9ab81d134288b70bc98364007e8e610e7066732e16f72ea990a782cade9ead6b71ddc9b843753fa0ee
This commit is contained in:
merge-script 2024-11-01 15:23:39 +00:00
commit c46171899a
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 3 additions and 1 deletions

View File

@ -56,15 +56,17 @@ pub use units::{
#[doc(inline)]
pub use self::{
block::{BlockHash, WitnessCommitment},
merkle_tree::{TxMerkleNode, WitnessMerkleNode},
pow::CompactTarget,
sequence::Sequence,
taproot::{TapBranchTag, TapLeafHash, TapLeafTag, TapNodeHash, TapTweakHash, TapTweakTag},
transaction::{Txid, Wtxid},
};
#[doc(inline)]
#[cfg(feature = "alloc")]
pub use self::{
locktime::{absolute, relative},
transaction::{TxIn, TxOut},
transaction::{TxIn, TxOut, Transaction},
witness::Witness,
};