Merge pull request #8577 from undefinedor/bugfix/fix-unreachable-code

kvdb+watchtower: fix unreachable code
This commit is contained in:
Oliver Gugger 2024-03-25 11:44:33 -06:00 committed by GitHub
commit fa2b0ca833
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 7 deletions

View file

@ -104,6 +104,8 @@
which with the default fee allocation in place will eventually lead to the
downsizing to the fee floor (1 sat/vByte) in the worst case.
* [Removed](https://github.com/lightningnetwork/lnd/pull/8577) some unreachable code
# New Features
## Functional Enhancements
@ -424,6 +426,7 @@ bitcoin peers' feefilter values into account](https://github.com/lightningnetwor
* Slyghtning
* Tee8z
* Turtle
* Hao Wang
* w3irdrobot
* Yong Yu
* Ziggie

View file

@ -301,6 +301,4 @@ func GetTestBackend(path, name string) (Backend, func(), error) {
}
return db, empty, nil
}
return nil, nil, fmt.Errorf("unknown backend")
}

View file

@ -333,9 +333,6 @@ tryNextCandidate:
goto retryWithBackoff
}
// Success.
return
}
}
@ -393,8 +390,6 @@ func (n *sessionNegotiator) createSession(tower *Tower, keyIndex uint32) error {
return nil
}
}
return ErrFailedNegotiation
}
// tryAddress executes a single create session dance using the given address.