mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-11-10 14:17:56 +01:00
kvdb+watchtower: fix unreachable code
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -301,6 +301,4 @@ func GetTestBackend(path, name string) (Backend, func(), error) {
|
||||
}
|
||||
return db, empty, nil
|
||||
}
|
||||
|
||||
return nil, nil, fmt.Errorf("unknown backend")
|
||||
}
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user