From 0d9c7add4a0a3fe5b5bd880ec02c63c0915d26dd Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 14 Dec 2023 08:49:44 +1100 Subject: [PATCH] Remove unnecessary private extern crate In #2278 I mistakenly left in the `use extern crate` after removing the `pub` from it - while not incorrect it is unnecessary. --- bitcoin/src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bitcoin/src/lib.rs b/bitcoin/src/lib.rs index 65a5b088..00ac5a28 100644 --- a/bitcoin/src/lib.rs +++ b/bitcoin/src/lib.rs @@ -59,10 +59,6 @@ pub extern crate base64; /// Encodes and decodes the Bech32 forrmat. pub extern crate bech32; -/// Bitcoin's libbitcoinconsensus with Rust binding. -#[cfg(feature = "bitcoinconsensus")] -extern crate bitcoinconsensus; - /// Rust implementation of cryptographic hash function algorithems. pub extern crate hashes;