X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fcli.rs;h=5863ed0144430dda1fbe18231b7cbe70b0a988b6;hb=64d7bdce16ae5a6d83cc290551b42574db177193;hp=013209f9d070ab8a1a33d78331afd0546880e165;hpb=39dda99b6977b8d976f4827486004503da91a760;p=ldk-sample diff --git a/src/cli.rs b/src/cli.rs index 013209f..5863ed0 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -762,7 +762,7 @@ pub(crate) fn parse_peer_info( let mut pubkey_and_addr = peer_pubkey_and_ip_addr.split("@"); let pubkey = pubkey_and_addr.next(); let peer_addr_str = pubkey_and_addr.next(); - if peer_addr_str.is_none() || peer_addr_str.is_none() { + if peer_addr_str.is_none() { return Err(std::io::Error::new( std::io::ErrorKind::Other, "ERROR: incorrectly formatted peer info. Should be formatted as: `pubkey@host:port`",