Skip to content

Commit cf424db

Browse files
authored
Merge pull request #64 from TheBlueMatt/main
2 parents e0ee408 + 9974201 commit cf424db

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -275,11 +275,11 @@ async fn handle_ldk_events(
275275
None => String::new(),
276276
Some(channel) => {
277277
match nodes.get(&NodeId::from_pubkey(&channel.counterparty.node_id)) {
278-
None => " from private node".to_string(),
278+
None => "private node".to_string(),
279279
Some(node) => match &node.announcement_info {
280-
None => " from unnamed node".to_string(),
280+
None => "unnamed node".to_string(),
281281
Some(announcement) => {
282-
format!(" from node {}", announcement.alias)
282+
format!("node {}", announcement.alias)
283283
}
284284
},
285285
}
@@ -292,9 +292,9 @@ async fn handle_ldk_events(
292292
.unwrap_or_default()
293293
};
294294
let from_prev_str =
295-
format!("{}{}", node_str(prev_channel_id), channel_str(prev_channel_id));
295+
format!(" from {}{}", node_str(prev_channel_id), channel_str(prev_channel_id));
296296
let to_next_str =
297-
format!("{}{}", node_str(next_channel_id), channel_str(next_channel_id));
297+
format!(" to {}{}", node_str(next_channel_id), channel_str(next_channel_id));
298298

299299
let from_onchain_str = if *claim_from_onchain_tx {
300300
"from onchain downstream claim"

0 commit comments

Comments
 (0)