From: Elias Rohrer Date: Tue, 14 Nov 2023 07:52:20 +0000 (+0100) Subject: Merge pull request #123 from TheBlueMatt/main X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=5b81f38a91bf0c58ffaadae1a50e794a56b1945b;hp=37da86a8a1a3294f991657ecca49c19e7c2b043d;p=ldk-sample Merge pull request #123 from TheBlueMatt/main Upgrade to LDK 0.0.118 --- diff --git a/src/main.rs b/src/main.rs index 6480805..4c57c16 100644 --- a/src/main.rs +++ b/src/main.rs @@ -213,7 +213,7 @@ async fn handle_ldk_events( // satisfied. let funded_tx = bitcoind_client.fund_raw_transaction(raw_tx).await; - // Sign the final funding transaction and broadcast it. + // Sign the final funding transaction and give it to LDK, who will eventually broadcast it. let signed_tx = bitcoind_client.sign_raw_transaction_with_wallet(funded_tx.hex).await; assert_eq!(signed_tx.complete, true); let final_tx: Transaction =