Remove wildcard in script re-exports

We don't like wildcard re-exports anymore; explicitly re-export the
types from `primitives::script`.
This commit is contained in:
Tobin C. Harding 2024-12-12 10:22:35 +11:00
parent aeca93b561
commit d1dd63d6d4
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ pub use self::{
push_bytes::{PushBytes, PushBytesBuf, PushBytesError, PushBytesErrorReport}, push_bytes::{PushBytes, PushBytesBuf, PushBytesError, PushBytesErrorReport},
}; };
#[doc(inline)] #[doc(inline)]
pub use primitives::script::*; pub use primitives::script::{Script, ScriptBuf};
pub(crate) use self::borrowed::ScriptExtPriv; pub(crate) use self::borrowed::ScriptExtPriv;
pub(crate) use self::owned::ScriptBufExtPriv; pub(crate) use self::owned::ScriptBufExtPriv;