@@ -1043,24 +1043,6 @@ func (p *Brontide) addLink(chanPoint *wire.OutPoint,
10431043 return p .cfg .ChainArb .NotifyContractUpdate (* chanPoint , update )
10441044 }
10451045
1046- var towerClient wtclient.ClientManager
1047- if lnChan .ChanType ().IsTaproot () {
1048- // Leave the tower client as nil for now until the tower client
1049- // has support for taproot channels.
1050- //
1051- // If the user has activated the tower client, then add a log
1052- // to explain that any taproot channel updates wil not be
1053- // backed up to a tower.
1054- if p .cfg .TowerClient != nil {
1055- p .log .Debugf ("Updates for channel %s will not be " +
1056- "backed up to a watchtower as watchtowers " +
1057- "are not yet taproot channel compatible" ,
1058- chanPoint )
1059- }
1060- } else {
1061- towerClient = p .cfg .TowerClient
1062- }
1063-
10641046 //nolint:lll
10651047 linkCfg := htlcswitch.ChannelLinkConfig {
10661048 Peer : p ,
@@ -1090,7 +1072,7 @@ func (p *Brontide) addLink(chanPoint *wire.OutPoint,
10901072 MinFeeUpdateTimeout : htlcswitch .DefaultMinLinkFeeUpdateTimeout ,
10911073 MaxFeeUpdateTimeout : htlcswitch .DefaultMaxLinkFeeUpdateTimeout ,
10921074 OutgoingCltvRejectDelta : p .cfg .OutgoingCltvRejectDelta ,
1093- TowerClient : towerClient ,
1075+ TowerClient : p . cfg . TowerClient ,
10941076 MaxOutgoingCltvExpiry : p .cfg .MaxOutgoingCltvExpiry ,
10951077 MaxFeeAllocation : p .cfg .MaxChannelFeeAllocation ,
10961078 MaxAnchorsCommitFeeRate : p .cfg .MaxAnchorsCommitFeeRate ,
0 commit comments