Merge rust-bitcoin/rust-bitcoin#3678: Remove unused extern statement

667b7f1010 Remove unused extern statement (yancy)

Pull request description:

  `extern crate` keywords are no longer needed to import a crate as of Rust 2018

ACKs for top commit:
  tcharding:
    ACK 667b7f1010
  apoelstra:
    ACK 667b7f1010bc0745d3e39181e15ec795aeca68dc; successfully ran local tests
  sanket1729:
    ACK 667b7f1010

Tree-SHA512: d157aa881dfce12b65bb676425cb5f17fa5a193d0001f37c26f74cab1254ab08fdcc9b7462b9a74210f85028299af9e14c0071ba390642b59bb7e986ba85933d
This commit is contained in:
merge-script 2024-11-29 03:01:13 +00:00
commit 031b402b26
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
2 changed files with 0 additions and 4 deletions

View File

@ -1,5 +1,3 @@
extern crate bitcoin;
use std::{env, process};
use bitcoin::address::{Address, KnownHrp};

View File

@ -1,5 +1,3 @@
extern crate bitcoin;
use std::io::{BufReader, Write};
use std::net::{IpAddr, Ipv4Addr, Shutdown, SocketAddr, TcpStream};
use std::time::{SystemTime, UNIX_EPOCH};