From 9974201983b9bd457d3b52a7c2393141eeec4485 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 16 Jul 2022 15:48:39 +0000 Subject: [PATCH] Correct logging on forwarded HTLCs Instead of "forwarded from A from B" it should read "forwarded from A to B". --- src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index bfe5bff..08bedc7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -275,11 +275,11 @@ async fn handle_ldk_events( None => String::new(), Some(channel) => { match nodes.get(&NodeId::from_pubkey(&channel.counterparty.node_id)) { - None => " from private node".to_string(), + None => "private node".to_string(), Some(node) => match &node.announcement_info { - None => " from unnamed node".to_string(), + None => "unnamed node".to_string(), Some(announcement) => { - format!(" from node {}", announcement.alias) + format!("node {}", announcement.alias) } }, } @@ -292,9 +292,9 @@ async fn handle_ldk_events( .unwrap_or_default() }; let from_prev_str = - format!("{}{}", node_str(prev_channel_id), channel_str(prev_channel_id)); + format!(" from {}{}", node_str(prev_channel_id), channel_str(prev_channel_id)); let to_next_str = - format!("{}{}", node_str(next_channel_id), channel_str(next_channel_id)); + format!(" to {}{}", node_str(next_channel_id), channel_str(next_channel_id)); let from_onchain_str = if *claim_from_onchain_tx { "from onchain downstream claim" -- 2.30.2