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:
parent
4c5dba82f4
commit
ce0d517383
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue