lnd: fallback to localhost if failing getting hostname

Needed on some versions of Android.
This commit is contained in:
Johan T. Halseth 2019-01-24 14:51:05 +01:00
parent a6e77811b1
commit 601773958d
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

5
lnd.go
View File

@ -645,8 +645,11 @@ func genCertPair(certFile, keyFile string) error {
// Collect the host's names into a slice.
host, err := os.Hostname()
if err != nil {
return err
rpcsLog.Errorf("Failed getting hostname, falling back to "+
"localhost: %v", err)
host = "localhost"
}
dnsNames := []string{host}
if host != "localhost" {
dnsNames = append(dnsNames, "localhost")