File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -985,7 +985,7 @@ impl fmt::Display for DecodeError {
985
985
DecodeError :: InvalidValue => f. write_str ( "Nonsense bytes didn't map to the type they were interpreted as" ) ,
986
986
DecodeError :: ShortRead => f. write_str ( "Packet extended beyond the provided bytes" ) ,
987
987
DecodeError :: BadLengthDescriptor => f. write_str ( "A length descriptor in the packet didn't describe the later data correctly" ) ,
988
- DecodeError :: Io ( ref e) => e . fmt ( f) ,
988
+ DecodeError :: Io ( ref e) => Debug :: fmt ( & e , f) ,
989
989
DecodeError :: UnsupportedCompression => f. write_str ( "We don't support receiving messages with zlib-compressed fields" ) ,
990
990
}
991
991
}
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ pub enum Event {
236
236
/// Note that this does *not* indicate that all paths for an MPP payment have failed, see
237
237
/// [`Event::PaymentFailed`] and [`all_paths_failed`].
238
238
///
239
- /// [`all_paths_failed`]: Self::all_paths_failed
239
+ /// [`all_paths_failed`]: Self::PaymentPathFailed:: all_paths_failed
240
240
PaymentPathFailed {
241
241
/// The id returned by [`ChannelManager::send_payment`] and used with
242
242
/// [`ChannelManager::retry_payment`] and [`ChannelManager::abandon_payment`].
You can’t perform that action at this time.
0 commit comments