mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-27 14:11:04 +02:00
lnd: fallback to localhost if failing getting hostname
Needed on some versions of Android.
This commit is contained in:
5
lnd.go
5
lnd.go
@@ -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")
|
||||
|
Reference in New Issue
Block a user