Browse Source

Handle resolution errors at startup

checkpoints
Aditya Kulkarni 5 years ago
parent
commit
bc9bef6ec1
  1. 7
      lib/src/lightclient.rs

7
lib/src/lightclient.rs

@ -75,6 +75,13 @@ impl LightClientConfig {
}
pub fn create(server: http::Uri, dangerous: bool) -> io::Result<(LightClientConfig, u64)> {
use std::net::ToSocketAddrs;
// Test for a connection first
format!("{}:{}", server.host().unwrap(), server.port_part().unwrap())
.to_socket_addrs()?
.next()
.ok_or(std::io::Error::new(ErrorKind::ConnectionRefused, "Couldn't resolve server!"))?;
// Do a getinfo first, before opening the wallet
let info = grpcconnector::get_info(server.clone(), dangerous)
.map_err(|e| std::io::Error::new(ErrorKind::ConnectionRefused, e))?;

Loading…
Cancel
Save