Skip to content

Commit

Permalink
chore(app): Fix collaborative_revert_channel log message
Browse files Browse the repository at this point in the history
  • Loading branch information
luckysori committed Jan 30, 2024
1 parent 0cf1ac1 commit b39c4c3
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 b39c4c3

Please sign in to comment.