From a33ee8f794bef81ec0755f0b3f635a8a66fe0b4f Mon Sep 17 00:00:00 2001 From: optout <13562139+optout21@users.noreply.github.com> Date: Wed, 25 Oct 2023 10:36:28 +0200 Subject: [PATCH] Fix comment on funding transaction broadcast --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = -- 2.30.2