Skip to content

Commit

Permalink
Merge pull request #2601 from kaloudis/lsps1-remote-lnd-interface
Browse files Browse the repository at this point in the history
LSPS1: default to REST interface for remote LND nodes
  • Loading branch information
kaloudis authored Dec 4, 2024
2 parents e4f3612 + 6a15a6f commit 72f71f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions backends/LND.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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> | boolean => false;
supportsBolt11BlindedRoutes = () => this.supports('v0.18.3');
supportsAddressesWithDerivationPaths = () => this.supports('v0.18.0');
Expand Down
4 changes: 2 additions & 2 deletions backends/LightningNodeConnect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 72f71f6

Please sign in to comment.