Skip to content

Commit 3971d83

Browse files
WIP
1 parent fd8f2fa commit 3971d83

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

lightning-liquidity/src/lsps5/service.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)