From 474bc84252cad71141e247d5f1ebd03f8ef32710 Mon Sep 17 00:00:00 2001 From: Dave Hrycyszyn Date: Mon, 29 Jul 2024 11:02:41 +0100 Subject: [PATCH] ibid --- side-node/src/bitcoin/driver/htlc.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/side-node/src/bitcoin/driver/htlc.rs b/side-node/src/bitcoin/driver/htlc.rs index 6ff28c3..89caf06 100644 --- a/side-node/src/bitcoin/driver/htlc.rs +++ b/side-node/src/bitcoin/driver/htlc.rs @@ -21,9 +21,8 @@ pub(crate) async fn run() -> anyhow::Result<()> { let htlc = bitcoin::htlc::Htlc::new(dave.public_key, hashlock, 100, sammy.public_key); let htlc_descriptor = htlc.to_miniscript_descriptor(); - tracing::info!("descriptor: {}", htlc_descriptor); - commitment_builder.add_recipient(recipient, amount); + commitment_builder.add_recipient(recipient, value); commitment_builder.enable_rbf(); let (psbt, _) = commitment_builder .finish()