Merge pull request #10144 from jtobin/jt/aux-error

server: don't mention aux controllers in error message
This commit is contained in:
Oliver Gugger
2025-08-11 00:42:12 -06:00
committed by GitHub

View File

@@ -634,8 +634,9 @@ func newServer(ctx context.Context, cfg *Config, listenAddrs []net.Addr,
if cfg.ProtocolOptions.TaprootOverlayChans &&
implCfg.AuxFundingController.IsNone() {
return nil, fmt.Errorf("taproot overlay flag set, but not " +
"aux controllers")
return nil, fmt.Errorf("taproot overlay flag set, but " +
"overlay channels are not supported " +
"in a standalone lnd build")
}
//nolint:ll