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 d6a5775 commit 594fde9Copy full SHA for 594fde9
lightning/src/routing/router.rs
@@ -136,9 +136,14 @@ impl Readable for Route {
136
/// [`Event::PaymentPathFailed`]: crate::util::events::Event::PaymentPathFailed
137
#[derive(Clone, Debug)]
138
pub struct PaymentPathRetry {
139
- payee: Payee,
140
- final_value_msat: u64,
141
- final_cltv: u32,
+ /// The recipient of the failed payment path.
+ pub payee: Payee,
+
142
+ /// The amount in msats sent on the failed payment path.
143
+ pub final_value_msat: u64,
144
145
+ /// The CLTV on the final hop of the failed payment path.
146
+ pub final_cltv: u32,
147
}
148
149
impl_writeable_tlv_based!(PaymentPathRetry, {
0 commit comments