File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
lightning-liquidity/src/lsps5 Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -518,7 +518,11 @@ where
518518 self . handle_set_webhook ( * counterparty_node_id, request_id. clone ( ) , params)
519519 } ,
520520 LSPS5Request :: ListWebhooks ( params) => {
521- self . handle_list_webhooks ( * counterparty_node_id, request_id. clone ( ) , params)
521+ self . handle_list_webhooks (
522+ * counterparty_node_id,
523+ request_id. clone ( ) ,
524+ params
525+ )
522526 } ,
523527 LSPS5Request :: RemoveWebhook ( params) => self . handle_remove_webhook (
524528 * counterparty_node_id,
@@ -533,7 +537,8 @@ where
533537 false ,
534538 "Service handler received LSPS5 response message. This should never happen."
535539 ) ;
536- let err = format ! ( "Service handler received LSPS5 response message from node {:?}. This should never happen." , counterparty_node_id) ;
540+ let err = format ! ( "Service handler received LSPS5 response message from node {:?}.
541+ This should never happen." , counterparty_node_id) ;
537542 Err ( LightningError { err, action : ErrorAction :: IgnoreAndLog ( Level :: Info ) } )
538543 } ,
539544 }
You can’t perform that action at this time.
0 commit comments