lncfg: remove deprecated PrivateTowerURIs from Wtclient cfg

This commit removes the `PrivateTowerURIs` member from the `WtClient`
config struct. This field has been deprecated since v0.8.0-beta and
currently, LND would fail to start if the field was specified.
This commit is contained in:
Elle Mouton 2023-06-15 08:39:44 +02:00
parent f3525e8b7c
commit 255d8bb355
No known key found for this signature in database
GPG Key ID: D7D916376026F177
2 changed files with 0 additions and 18 deletions

View File

@ -15,10 +15,6 @@ type WtClient struct {
// back up channel states with registered watchtowers. // back up channel states with registered watchtowers.
Active bool `long:"active" description:"Whether the daemon should use private watchtowers to back up revoked channel states."` Active bool `long:"active" description:"Whether the daemon should use private watchtowers to back up revoked channel states."`
// PrivateTowerURIs specifies the lightning URIs of the towers the
// watchtower client should send new backups to.
PrivateTowerURIs []string `long:"private-tower-uris" description:"(Deprecated) Specifies the URIs of private watchtowers to use in backing up revoked states. URIs must be of the form <pubkey>@<addr>. Only 1 URI is supported at this time, if none are provided the tower will not be enabled."`
// SweepFeeRate specifies the fee rate in sat/byte to be used when // SweepFeeRate specifies the fee rate in sat/byte to be used when
// constructing justice transactions sent to the tower. // constructing justice transactions sent to the tower.
SweepFeeRate uint64 `long:"sweep-fee-rate" description:"Specifies the fee rate in sat/byte to be used when constructing justice transactions sent to the watchtower."` SweepFeeRate uint64 `long:"sweep-fee-rate" description:"Specifies the fee rate in sat/byte to be used when constructing justice transactions sent to the watchtower."`
@ -58,15 +54,6 @@ func DefaultWtClientCfg() *WtClient {
// //
// NOTE: Part of the Validator interface. // NOTE: Part of the Validator interface.
func (c *WtClient) Validate() error { func (c *WtClient) Validate() error {
// TODO(wilmer): remove in v0.9.0 release.
if len(c.PrivateTowerURIs) > 0 {
return fmt.Errorf("the `wtclient.private-tower-uris` option " +
"has been deprecated as of v0.8.0-beta and will be " +
"removed in v0.9.0-beta. To setup watchtowers for " +
"the client, set `wtclient.active` and run " +
"`lncli wtclient -h` for more information")
}
if c.SweepFeeRate == 0 { if c.SweepFeeRate == 0 {
return fmt.Errorf("sweep-fee-rate must be non-zero") return fmt.Errorf("sweep-fee-rate must be non-zero")
} }

View File

@ -992,11 +992,6 @@ litecoin.node=ltcd
; specified in sat/byte, the default is 10 sat/byte. ; specified in sat/byte, the default is 10 sat/byte.
; wtclient.sweep-fee-rate=10 ; wtclient.sweep-fee-rate=10
; (Deprecated) Specifies the URIs of private watchtowers to use in backing up
; revoked states. URIs must be of the form <pubkey>@<addr>. Only 1 URI is
; supported at this time, if none are provided the tower will not be enabled.
; wtclient.private-tower-uris=
; The range over which to choose a random number of blocks to wait after the ; The range over which to choose a random number of blocks to wait after the
; last channel of a session is closed before sending the DeleteSession message ; last channel of a session is closed before sending the DeleteSession message
; to the tower server. The default is currently 288. Note that setting this to ; to the tower server. The default is currently 288. Note that setting this to