Use explicit re-export of transaction types

While moving transaction types to `primitives` I mistakenly used a
wildcard when re-exporting, make the re-exports explicit.
This commit is contained in:
Tobin C. Harding 2024-10-18 14:15:45 +11:00
parent 4c5dba82f4
commit ce0d517383
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ use crate::{Amount, FeeRate, SignedAmount};
#[rustfmt::skip] // Keep public re-exports separate.
#[doc(inline)]
pub use primitives::transaction::*;
pub use primitives::transaction::{OutPoint, ParseOutPointError, Txid, Wtxid, Version};
impl_hashencode!(Txid);
impl_hashencode!(Wtxid);