Skip to content

Commit 72e9ad8

Browse files
authored
Merge pull request #10144 from jtobin/jt/aux-error
server: don't mention aux controllers in error message
2 parents a3793b2 + 5688935 commit 72e9ad8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

server.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,8 +634,9 @@ func newServer(ctx context.Context, cfg *Config, listenAddrs []net.Addr,
634634
if cfg.ProtocolOptions.TaprootOverlayChans &&
635635
implCfg.AuxFundingController.IsNone() {
636636

637-
return nil, fmt.Errorf("taproot overlay flag set, but not " +
638-
"aux controllers")
637+
return nil, fmt.Errorf("taproot overlay flag set, but " +
638+
"overlay channels are not supported " +
639+
"in a standalone lnd build")
639640
}
640641

641642
//nolint:ll

0 commit comments

Comments
 (0)