From: optout <13562139+optout21@users.noreply.github.com> Date: Wed, 25 Oct 2023 08:36:28 +0000 (+0200) Subject: Fix comment on funding transaction broadcast X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-sample;a=commitdiff_plain;h=a33ee8f794bef81ec0755f0b3f635a8a66fe0b4f Fix comment on funding transaction broadcast --- diff --git a/src/main.rs b/src/main.rs index 50edb22..33b1707 100644 --- a/src/main.rs +++ b/src/main.rs @@ -203,7 +203,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 =