File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -275,11 +275,11 @@ async fn handle_ldk_events(
275
275
None => String :: new ( ) ,
276
276
Some ( channel) => {
277
277
match nodes. get ( & NodeId :: from_pubkey ( & channel. counterparty . node_id ) ) {
278
- None => " from private node" . to_string ( ) ,
278
+ None => "private node" . to_string ( ) ,
279
279
Some ( node) => match & node. announcement_info {
280
- None => " from unnamed node" . to_string ( ) ,
280
+ None => "unnamed node" . to_string ( ) ,
281
281
Some ( announcement) => {
282
- format ! ( " from node {}" , announcement. alias)
282
+ format ! ( "node {}" , announcement. alias)
283
283
}
284
284
} ,
285
285
}
@@ -292,9 +292,9 @@ async fn handle_ldk_events(
292
292
. unwrap_or_default ( )
293
293
} ;
294
294
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) ) ;
296
296
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) ) ;
298
298
299
299
let from_onchain_str = if * claim_from_onchain_tx {
300
300
"from onchain downstream claim"
You can’t perform that action at this time.
0 commit comments