Skip to content

Commit

Permalink
chore(ln-dlc-node): Remove stray dbg statements
Browse files Browse the repository at this point in the history
  • Loading branch information
luckysori committed Mar 7, 2023
1 parent d7017e8 commit 7723d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ln-dlc-node/src/node/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ impl Node {
tracing::info!("Found sub_channels: {}", sub_channels.len());

let sub_channel = match sub_channels.iter().find(|sub_channel| {
dbg!(sub_channel.counter_party) == dbg!(*pubkey)
sub_channel.counter_party == *pubkey
&& matches!(&sub_channel.state, SubChannelState::Offered(_))
}) {
None => {
Expand Down

0 comments on commit 7723d10

Please sign in to comment.