File tree Expand file tree Collapse file tree 3 files changed +2
-18
lines changed Expand file tree Collapse file tree 3 files changed +2
-18
lines changed Original file line number Diff line number Diff line change @@ -627,9 +627,8 @@ func DefaultConfig() Config {
627627 RejectCacheSize : channeldb .DefaultRejectCacheSize ,
628628 ChannelCacheSize : channeldb .DefaultChannelCacheSize ,
629629 },
630- Prometheus : lncfg .DefaultPrometheus (),
631- Watchtower : lncfg .DefaultWatchtowerCfg (defaultTowerDir ),
632- ProtocolOptions : lncfg .DefaultProtocol (),
630+ Prometheus : lncfg .DefaultPrometheus (),
631+ Watchtower : lncfg .DefaultWatchtowerCfg (defaultTowerDir ),
633632 HealthChecks : & lncfg.HealthCheckConfig {
634633 ChainCheck : & lncfg.CheckConfig {
635634 Interval : defaultChainInterval ,
Original file line number Diff line number Diff line change @@ -59,14 +59,6 @@ type ProtocolOptions struct {
5959 NoRouteBlindingOption bool `long:"no-route-blinding" description:"do not forward payments that are a part of a blinded route"`
6060}
6161
62- // DefaultProtocol returns a protocol config with route blinding turned off,
63- // temporarily in place until full handling of blinded route errors is merged.
64- func DefaultProtocol () * ProtocolOptions {
65- return & ProtocolOptions {
66- NoRouteBlindingOption : true ,
67- }
68- }
69-
7062// Wumbo returns true if lnd should permit the creation and acceptance of wumbo
7163// channels.
7264func (l * ProtocolOptions ) Wumbo () bool {
Original file line number Diff line number Diff line change @@ -62,13 +62,6 @@ type ProtocolOptions struct {
6262 NoRouteBlindingOption bool `long:"no-route-blinding" description:"do not forward payments that are a part of a blinded route"`
6363}
6464
65- // DefaultProtocol returns a protocol config with route blinding turned on,
66- // so that itests can run against route blinding features even while we've
67- // got it turned off for the daemon (pending completion of error handling).
68- func DefaultProtocol () * ProtocolOptions {
69- return & ProtocolOptions {}
70- }
71-
7265// Wumbo returns true if lnd should permit the creation and acceptance of wumbo
7366// channels.
7467func (l * ProtocolOptions ) Wumbo () bool {
You can’t perform that action at this time.
0 commit comments