block: Remove wildcard re-export

Use explicit re-exports for `primitives` types when re-exporting from
the `block` module.
This commit is contained in:
Tobin C. Harding 2024-10-15 10:01:03 +11:00
parent 299754c2c2
commit 5614694b69
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ use crate::transaction::{Transaction, Wtxid};
#[rustfmt::skip] // Keep public re-exports separate.
#[doc(inline)]
pub use primitives::block::*;
pub use primitives::block::{Version, BlockHash, WitnessCommitment};
impl_hashencode!(BlockHash);