From e5c74c38a20e153f0919b43755d58dff8f2c8da2 Mon Sep 17 00:00:00 2001 From: "Jamil Lambert, PhD" Date: Thu, 6 Feb 2025 14:01:39 +0000 Subject: [PATCH] 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. --- primitives/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/primitives/src/lib.rs b/primitives/src/lib.rs index a25d422e7..5cd715063 100644 --- a/primitives/src/lib.rs +++ b/primitives/src/lib.rs @@ -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]