diff --git a/backends/LND.ts b/backends/LND.ts index 167af854d..762a0878a 100644 --- a/backends/LND.ts +++ b/backends/LND.ts @@ -689,8 +689,8 @@ export default class LND { supportsOnchainSendMax = () => this.supports('v0.18.3'); supportsOnchainBatching = () => true; supportsChannelBatching = () => true; - supportsLSPS1customMessage = () => true; - supportsLSPS1rest = () => false; + supportsLSPS1customMessage = () => false; + supportsLSPS1rest = () => true; supportsOffers = (): Promise | boolean => false; supportsBolt11BlindedRoutes = () => this.supports('v0.18.3'); supportsAddressesWithDerivationPaths = () => this.supports('v0.18.0'); diff --git a/backends/LightningNodeConnect.ts b/backends/LightningNodeConnect.ts index 9eb41f8a5..be804b9fd 100644 --- a/backends/LightningNodeConnect.ts +++ b/backends/LightningNodeConnect.ts @@ -527,8 +527,8 @@ export default class LightningNodeConnect { supportsOnchainSendMax = () => this.supports('v0.18.3'); supportsOnchainBatching = () => true; supportsChannelBatching = () => true; - supportsLSPS1customMessage = () => true; - supportsLSPS1rest = () => false; + supportsLSPS1customMessage = () => false; + supportsLSPS1rest = () => true; supportsOffers = () => false; supportsBolt11BlindedRoutes = () => this.supports('v0.18.3'); supportsAddressesWithDerivationPaths = () => this.supports('v0.18.0');