From 8da1d9d069e24a755a969183796d89d07f6f5a2c Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Wed, 19 Nov 2025 11:22:46 +0100 Subject: [PATCH] fix(plugin): Rename the lsps-lsps2-invoice method to lsp-jitchannel --- libs/gl-plugin/src/requests.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libs/gl-plugin/src/requests.rs b/libs/gl-plugin/src/requests.rs index caed0e6e6..e2344b408 100644 --- a/libs/gl-plugin/src/requests.rs +++ b/libs/gl-plugin/src/requests.rs @@ -250,8 +250,10 @@ impl From for LspInvoiceRequest { impl TypedRequest for LspInvoiceRequest { type Response = super::responses::InvoiceResponse; fn method(&self) -> &str { - "lsps-lsps2-invoice" - } + // TODO Rename after the CLN rename has been deployed. + // "lsps-lsps2-invoice" + "lsps-jitchannel" + } } impl TypedRequest for LspGetinfoRequest {