Remove path from ScriptBuf

The `ScriptBuf` type is perfectly descriptive without the use of the
additional `script::` path.

Refactor only, no logic changes.
This commit is contained in:
Tobin C. Harding 2024-07-03 03:59:02 +10:00
parent 2fcd65ad97
commit ee333defa4
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -803,7 +803,7 @@ impl Address<NetworkUnchecked> {
}
}
impl From<Address> for script::ScriptBuf {
impl From<Address> for ScriptBuf {
fn from(a: Address) -> Self { a.script_pubkey() }
}