feat: add cancel to wait invoice

This commit is contained in:
thesimplekid
2024-10-06 16:38:38 +02:00
parent 515991f8d2
commit 7865f3dc17
9 changed files with 195 additions and 28 deletions

View File

@@ -80,6 +80,14 @@ impl MintLightning for LNbits {
}
}
fn is_wait_invoice_active(&self) -> bool {
todo!()
}
fn cancel_wait_invoice(&self) {
todo!()
}
async fn wait_any_invoice(
&self,
) -> Result<Pin<Box<dyn Stream<Item = String> + Send>>, Self::Err> {