From a194ac8658ed9b09c5d81ce4510688eedae1a7e0 Mon Sep 17 00:00:00 2001 From: amackillop Date: Tue, 9 Dec 2025 13:07:27 -0800 Subject: [PATCH] Use ldk-node lsp-0.6.2 branch This revision includes the ChannelConfigOverride's necessary for well functioning LSP client channels that were cherry-picked from a later version of LDK. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a3f5c5a..2731636 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,8 @@ crate-type = ["cdylib"] bitcoin-payment-instructions = { version = "0.5.0", default-features = false, features = [ "http", ] } -ldk-node = { default-features = false, git = "https://github.com/moneydevkit/ldk-node.git", branch = "accept_underpaying_htlcs-true" } +# Branch: https://github.com/moneydevkit/ldk-node/commits/lsp-0.6.2/ +ldk-node = { default-features = false, git = "https://github.com/moneydevkit/ldk-node.git", rev = "7dc77ccc5e841dbd3e66a42ac529a30702035774" } napi = { version = "2", features = ["napi4"] } napi-derive = "2" tokio = { version = "1", features = ["rt-multi-thread"] }