Remove unused extern statement
extern crate keywords are no longer needed to import a crate
This commit is contained in:
parent
f95d877d56
commit
667b7f1010
|
@ -1,5 +1,3 @@
|
||||||
extern crate bitcoin;
|
|
||||||
|
|
||||||
use std::{env, process};
|
use std::{env, process};
|
||||||
|
|
||||||
use bitcoin::address::{Address, KnownHrp};
|
use bitcoin::address::{Address, KnownHrp};
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
extern crate bitcoin;
|
|
||||||
|
|
||||||
use std::io::{BufReader, Write};
|
use std::io::{BufReader, Write};
|
||||||
use std::net::{IpAddr, Ipv4Addr, Shutdown, SocketAddr, TcpStream};
|
use std::net::{IpAddr, Ipv4Addr, Shutdown, SocketAddr, TcpStream};
|
||||||
use std::time::{SystemTime, UNIX_EPOCH};
|
use std::time::{SystemTime, UNIX_EPOCH};
|
||||||
|
|
Loading…
Reference in New Issue