We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c79ef8 commit 048584dCopy full SHA for 048584d
lightning/src/ln/channelmanager.rs
@@ -2614,6 +2614,17 @@ pub enum RecentPaymentDetails {
2614
},
2615
}
2616
2617
+/// Error during responding to Bolt12 Messages.
2618
+pub enum Bolt12ResponseError {
2619
+ /// Error from BOLT 12 semantic checks.
2620
+ SemanticError(Bolt12SemanticError),
2621
+ /// Error from failed verification of received [`OffersMessage`]
2622
+ VerificationError,
2623
+ /// Error generated when custom amount is provided when [`InvoiceRequest`] already
2624
+ /// contains amount.
2625
+ UnexpectedAmount
2626
+}
2627
+
2628
/// Route hints used in constructing invoices for [phantom node payents].
2629
///
2630
/// [phantom node payments]: crate::sign::PhantomKeysManager
0 commit comments