Skip to content

Commit

Permalink
Merge pull request #1922 from get10101/chore/correct-log
Browse files Browse the repository at this point in the history
Fix `collaborative_revert_channel` log message
  • Loading branch information
luckysori authored Jan 30, 2024
2 parents 0cf1ac1 + b39c4c3 commit 4363f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/native/src/ln_dlc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ pub fn collaborative_revert_channel(
let signed_channel = dlc_channels
.into_iter()
.find(|c| c.channel_id == channel_id)
.with_context(|| format!("Could not find subchannel {channel_id_hex}"))?;
.with_context(|| format!("Could not find signed channel {channel_id_hex}"))?;

let fund_output_value = signed_channel.fund_tx.output[signed_channel.fund_output_index].value;

Expand Down

0 comments on commit 4363f6e

Please sign in to comment.