Merge pull request #963 from crodas/feature/wait-for-invoice

Add `wait_for_payment` function in the wallet
This commit is contained in:
C
2025-08-18 08:57:45 -03:00
committed by GitHub
parent da21ce655a
commit f8d58e419f
18 changed files with 299 additions and 301 deletions

View File

@@ -111,6 +111,10 @@ pub enum Error {
#[error("Could not parse bolt12")]
Bolt12parse,
/// Operation timeout
#[error("Operation timeout")]
Timeout,
/// Internal Error - Send error
#[error("Internal send error: {0}")]
SendError(String),