From 9df89d5d412254b3b10dcafd44991f9ba1f16e6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Granh=C3=A3o?= Date: Wed, 15 May 2024 13:21:07 +0100 Subject: [PATCH] Implement close_lsp_channels --- mock/breez-sdk/src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mock/breez-sdk/src/lib.rs b/mock/breez-sdk/src/lib.rs index 40f0044fd..e168d371d 100644 --- a/mock/breez-sdk/src/lib.rs +++ b/mock/breez-sdk/src/lib.rs @@ -1116,6 +1116,11 @@ impl BreezServices { pub async fn generate_diagnostic_data(&self) -> SdkResult { Ok("Dummy diagnostics".to_string()) } + + pub async fn close_lsp_channels(&self) -> SdkResult> { + // No need to implement this in the mock + Ok(Vec::new()) + } } pub async fn parse(input: &str) -> Result {