You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/error.rs
+11
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,12 @@ pub enum Error {
71
71
LiquiditySourceUnavailable,
72
72
/// The given operation failed due to the LSP's required opening fee being too high.
73
73
LiquidityFeeTooHigh,
74
+
/// Amount is not prvoided and neither defined in the URI.
75
+
PayjoinRequestAmountMissing,
76
+
/// Failed to build a payjoin request.
77
+
ConstructingPayjoinRequestFailed,
78
+
/// Failed to access payjoin sender object.
79
+
PayjoinSenderUnavailable,
74
80
}
75
81
76
82
impl fmt::DisplayforError{
@@ -121,7 +127,12 @@ impl fmt::Display for Error {
121
127
},
122
128
Self::LiquidityFeeTooHigh => {
123
129
write!(f,"The given operation failed due to the LSP's required opening fee being too high.")
130
+
},Self::ConstructingPayjoinRequestFailed => write!(f,"Failed construct a payjoin request.
131
+
Make sure the provided URI is valid and the configured payjoin relay as available."),
132
+
Self::PayjoinRequestAmountMissing => {
133
+
write!(f,"Amount is not provided and neither defined in the URI.")
124
134
},
135
+
Self::PayjoinSenderUnavailable => write!(f,"Failed to access payjoin sender object. Make sure you have configured the node to act as payjoin sender."),
0 commit comments