Merge pull request #5802 from yyforyongyu/5318-fix-addr-format

lndcfg: give verbose err when failed to load config
This commit is contained in:
Olaoluwa Osuntokun 2021-09-30 20:14:08 -07:00 committed by GitHub
commit 91edfaed85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

View file

@ -23,6 +23,7 @@ func main() {
if err != nil {
if e, ok := err.(*flags.Error); !ok || e.Type != flags.ErrHelp {
// Print error if not due to help request.
err = fmt.Errorf("failed to load config: %w", err)
_, _ = fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}

View file

@ -234,6 +234,10 @@ you.
`lncli deletepayments`](https://github.com/lightningnetwork/lnd/pull/5699)
command.
* [Add more verbose error printed to
console](https://github.com/lightningnetwork/lnd/pull/5802) when `lnd` fails
loading the user specified config.
## Code Health
### Code cleanup, refactor, typo fixes

View file

@ -35,7 +35,8 @@ func NormalizeAddresses(addrs []string, defaultPort string,
addr, defaultPort, tcpResolver,
)
if err != nil {
return nil, err
return nil, fmt.Errorf("parse address %s failed: %w",
addr, err)
}
if _, ok := seen[parsedAddr.String()]; !ok {