kvdb+watchtower: fix unreachable code

This commit is contained in:
undefinedor 2024-03-23 19:02:23 +08:00
parent 1422df27b2
commit 028959f5a0
No known key found for this signature in database
GPG Key ID: 62FABA7851032922
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 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. 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 # New Features
## Functional Enhancements ## Functional Enhancements
@ -424,6 +426,7 @@ bitcoin peers' feefilter values into account](https://github.com/lightningnetwor
* Slyghtning * Slyghtning
* Tee8z * Tee8z
* Turtle * Turtle
* Hao Wang
* w3irdrobot * w3irdrobot
* Yong Yu * Yong Yu
* Ziggie * Ziggie

View File

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

View File

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