From 11bec9bb4ac51e93f365bbfe5f26604659ecbbd7 Mon Sep 17 00:00:00 2001 From: Kelvin Isievwore Date: Tue, 10 Sep 2024 13:33:14 +0100 Subject: [PATCH] docs(cln): updated cln compatibility issue comment --- src/lib/lightning/clightning/clightningService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/lightning/clightning/clightningService.ts b/src/lib/lightning/clightning/clightningService.ts index d60b2068d..7b3641b2e 100644 --- a/src/lib/lightning/clightning/clightningService.ts +++ b/src/lib/lightning/clightning/clightningService.ts @@ -164,7 +164,7 @@ export class CLightningService implements LightningService { } async closeChannel(node: LightningNode, channelPoint: string): Promise { - // The unilateraltimeout option is added to force close the channel because CLN v24.05 has a compatibility issue with Eclair v0.10.0. + // The unilateraltimeout option is added to force close the channel because CLN v24.08 has a compatibility issue with Eclair v0.10.0. // It should be removed after the issue is fixed in subsequent versions for CLN or Eclair nodes. const body = { id: channelPoint, unilateraltimeout: 1 }; // close the channel unilaterally after 1 second await httpPost(node, `close`, body);