e3e458cb9005c72af363e5eff7c1285f93c34898
[rust-lightning] / lightning / src / util / events.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! Events are returned from various bits in the library which indicate some action must be taken
11 //! by the client.
12 //!
13 //! Because we don't have a built-in runtime, it's up to the client to call events at a time in the
14 //! future, as well as generate and broadcast funding transactions handle payment preimages and a
15 //! few other things.
16
17 use crate::chain::keysinterface::SpendableOutputDescriptor;
18 #[cfg(anchors)]
19 use crate::ln::chan_utils::HTLCOutputInCommitment;
20 use crate::ln::channelmanager::{InterceptId, PaymentId};
21 use crate::ln::channel::FUNDING_CONF_DEADLINE_BLOCKS;
22 use crate::ln::features::ChannelTypeFeatures;
23 use crate::ln::msgs;
24 use crate::ln::msgs::DecodeError;
25 use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
26 use crate::routing::gossip::NetworkUpdate;
27 use crate::util::ser::{BigSize, FixedLengthReader, Writeable, Writer, MaybeReadable, Readable, WithoutLength, OptionDeserWrapper};
28 use crate::routing::router::{RouteHop, RouteParameters};
29
30 use bitcoin::{PackedLockTime, Transaction};
31 #[cfg(anchors)]
32 use bitcoin::OutPoint;
33 use bitcoin::blockdata::script::Script;
34 use bitcoin::hashes::Hash;
35 use bitcoin::hashes::sha256::Hash as Sha256;
36 use bitcoin::secp256k1::PublicKey;
37 use crate::io;
38 use crate::prelude::*;
39 use core::time::Duration;
40 use core::ops::Deref;
41 use crate::sync::Arc;
42
43 /// Some information provided on receipt of payment depends on whether the payment received is a
44 /// spontaneous payment or a "conventional" lightning payment that's paying an invoice.
45 #[derive(Clone, Debug)]
46 pub enum PaymentPurpose {
47         /// Information for receiving a payment that we generated an invoice for.
48         InvoicePayment {
49                 /// The preimage to the payment_hash, if the payment hash (and secret) were fetched via
50                 /// [`ChannelManager::create_inbound_payment`]. If provided, this can be handed directly to
51                 /// [`ChannelManager::claim_funds`].
52                 ///
53                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
54                 /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
55                 payment_preimage: Option<PaymentPreimage>,
56                 /// The "payment secret". This authenticates the sender to the recipient, preventing a
57                 /// number of deanonymization attacks during the routing process.
58                 /// It is provided here for your reference, however its accuracy is enforced directly by
59                 /// [`ChannelManager`] using the values you previously provided to
60                 /// [`ChannelManager::create_inbound_payment`] or
61                 /// [`ChannelManager::create_inbound_payment_for_hash`].
62                 ///
63                 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
64                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
65                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
66                 payment_secret: PaymentSecret,
67         },
68         /// Because this is a spontaneous payment, the payer generated their own preimage rather than us
69         /// (the payee) providing a preimage.
70         SpontaneousPayment(PaymentPreimage),
71 }
72
73 impl_writeable_tlv_based_enum!(PaymentPurpose,
74         (0, InvoicePayment) => {
75                 (0, payment_preimage, option),
76                 (2, payment_secret, required),
77         };
78         (2, SpontaneousPayment)
79 );
80
81 #[derive(Clone, Debug, PartialEq, Eq)]
82 /// The reason the channel was closed. See individual variants more details.
83 pub enum ClosureReason {
84         /// Closure generated from receiving a peer error message.
85         ///
86         /// Our counterparty may have broadcasted their latest commitment state, and we have
87         /// as well.
88         CounterpartyForceClosed {
89                 /// The error which the peer sent us.
90                 ///
91                 /// The string should be sanitized before it is used (e.g emitted to logs
92                 /// or printed to stdout). Otherwise, a well crafted error message may exploit
93                 /// a security vulnerability in the terminal emulator or the logging subsystem.
94                 peer_msg: String,
95         },
96         /// Closure generated from [`ChannelManager::force_close_channel`], called by the user.
97         ///
98         /// [`ChannelManager::force_close_channel`]: crate::ln::channelmanager::ChannelManager::force_close_channel.
99         HolderForceClosed,
100         /// The channel was closed after negotiating a cooperative close and we've now broadcasted
101         /// the cooperative close transaction. Note the shutdown may have been initiated by us.
102         //TODO: split between CounterpartyInitiated/LocallyInitiated
103         CooperativeClosure,
104         /// A commitment transaction was confirmed on chain, closing the channel. Most likely this
105         /// commitment transaction came from our counterparty, but it may also have come from
106         /// a copy of our own `ChannelMonitor`.
107         CommitmentTxConfirmed,
108         /// The funding transaction failed to confirm in a timely manner on an inbound channel.
109         FundingTimedOut,
110         /// Closure generated from processing an event, likely a HTLC forward/relay/reception.
111         ProcessingError {
112                 /// A developer-readable error message which we generated.
113                 err: String,
114         },
115         /// The peer disconnected prior to funding completing. In this case the spec mandates that we
116         /// forget the channel entirely - we can attempt again if the peer reconnects.
117         ///
118         /// This includes cases where we restarted prior to funding completion, including prior to the
119         /// initial [`ChannelMonitor`] persistence completing.
120         ///
121         /// In LDK versions prior to 0.0.107 this could also occur if we were unable to connect to the
122         /// peer because of mutual incompatibility between us and our channel counterparty.
123         ///
124         /// [`ChannelMonitor`]: crate::chain::channelmonitor::ChannelMonitor
125         DisconnectedPeer,
126         /// Closure generated from `ChannelManager::read` if the [`ChannelMonitor`] is newer than
127         /// the [`ChannelManager`] deserialized.
128         ///
129         /// [`ChannelMonitor`]: crate::chain::channelmonitor::ChannelMonitor
130         /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
131         OutdatedChannelManager
132 }
133
134 impl core::fmt::Display for ClosureReason {
135         fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
136                 f.write_str("Channel closed because ")?;
137                 match self {
138                         ClosureReason::CounterpartyForceClosed { peer_msg } => {
139                                 f.write_str("counterparty force-closed with message ")?;
140                                 f.write_str(&peer_msg)
141                         },
142                         ClosureReason::HolderForceClosed => f.write_str("user manually force-closed the channel"),
143                         ClosureReason::CooperativeClosure => f.write_str("the channel was cooperatively closed"),
144                         ClosureReason::CommitmentTxConfirmed => f.write_str("commitment or closing transaction was confirmed on chain."),
145                         ClosureReason::FundingTimedOut => write!(f, "funding transaction failed to confirm within {} blocks", FUNDING_CONF_DEADLINE_BLOCKS),
146                         ClosureReason::ProcessingError { err } => {
147                                 f.write_str("of an exception: ")?;
148                                 f.write_str(&err)
149                         },
150                         ClosureReason::DisconnectedPeer => f.write_str("the peer disconnected prior to the channel being funded"),
151                         ClosureReason::OutdatedChannelManager => f.write_str("the ChannelManager read from disk was stale compared to ChannelMonitor(s)"),
152                 }
153         }
154 }
155
156 impl_writeable_tlv_based_enum_upgradable!(ClosureReason,
157         (0, CounterpartyForceClosed) => { (1, peer_msg, required) },
158         (1, FundingTimedOut) => {},
159         (2, HolderForceClosed) => {},
160         (6, CommitmentTxConfirmed) => {},
161         (4, CooperativeClosure) => {},
162         (8, ProcessingError) => { (1, err, required) },
163         (10, DisconnectedPeer) => {},
164         (12, OutdatedChannelManager) => {},
165 );
166
167 /// Intended destination of a failed HTLC as indicated in [`Event::HTLCHandlingFailed`].
168 #[derive(Clone, Debug, PartialEq, Eq)]
169 pub enum HTLCDestination {
170         /// We tried forwarding to a channel but failed to do so. An example of such an instance is when
171         /// there is insufficient capacity in our outbound channel.
172         NextHopChannel {
173                 /// The `node_id` of the next node. For backwards compatibility, this field is
174                 /// marked as optional, versions prior to 0.0.110 may not always be able to provide
175                 /// counterparty node information.
176                 node_id: Option<PublicKey>,
177                 /// The outgoing `channel_id` between us and the next node.
178                 channel_id: [u8; 32],
179         },
180         /// Scenario where we are unsure of the next node to forward the HTLC to.
181         UnknownNextHop {
182                 /// Short channel id we are requesting to forward an HTLC to.
183                 requested_forward_scid: u64,
184         },
185         /// We couldn't forward to the outgoing scid. An example would be attempting to send a duplicate
186         /// intercept HTLC.
187         InvalidForward {
188                 /// Short channel id we are requesting to forward an HTLC to.
189                 requested_forward_scid: u64
190         },
191         /// Failure scenario where an HTLC may have been forwarded to be intended for us,
192         /// but is invalid for some reason, so we reject it.
193         ///
194         /// Some of the reasons may include:
195         /// * HTLC Timeouts
196         /// * Expected MPP amount to claim does not equal HTLC total
197         /// * Claimable amount does not match expected amount
198         FailedPayment {
199                 /// The payment hash of the payment we attempted to process.
200                 payment_hash: PaymentHash
201         },
202 }
203
204 impl_writeable_tlv_based_enum_upgradable!(HTLCDestination,
205         (0, NextHopChannel) => {
206                 (0, node_id, required),
207                 (2, channel_id, required),
208         },
209         (1, InvalidForward) => {
210                 (0, requested_forward_scid, required),
211         },
212         (2, UnknownNextHop) => {
213                 (0, requested_forward_scid, required),
214         },
215         (4, FailedPayment) => {
216                 (0, payment_hash, required),
217         },
218 );
219
220 #[cfg(anchors)]
221 /// A descriptor used to sign for a commitment transaction's anchor output.
222 #[derive(Clone, Debug)]
223 pub struct AnchorDescriptor {
224         /// A unique identifier used along with `channel_value_satoshis` to re-derive the
225         /// [`InMemorySigner`] required to sign `input`.
226         ///
227         /// [`InMemorySigner`]: crate::chain::keysinterface::InMemorySigner
228         pub channel_keys_id: [u8; 32],
229         /// The value in satoshis of the channel we're attempting to spend the anchor output of. This is
230         /// used along with `channel_keys_id` to re-derive the [`InMemorySigner`] required to sign
231         /// `input`.
232         ///
233         /// [`InMemorySigner`]: crate::chain::keysinterface::InMemorySigner
234         pub channel_value_satoshis: u64,
235         /// The transaction input's outpoint corresponding to the commitment transaction's anchor
236         /// output.
237         pub outpoint: OutPoint,
238 }
239
240 #[cfg(anchors)]
241 /// Represents the different types of transactions, originating from LDK, to be bumped.
242 #[derive(Clone, Debug)]
243 pub enum BumpTransactionEvent {
244         /// Indicates that a channel featuring anchor outputs is to be closed by broadcasting the local
245         /// commitment transaction. Since commitment transactions have a static feerate pre-agreed upon,
246         /// they may need additional fees to be attached through a child transaction using the popular
247         /// [Child-Pays-For-Parent](https://bitcoinops.org/en/topics/cpfp) fee bumping technique. This
248         /// child transaction must include the anchor input described within `anchor_descriptor` along
249         /// with additional inputs to meet the target feerate. Failure to meet the target feerate
250         /// decreases the confirmation odds of the transaction package (which includes the commitment
251         /// and child anchor transactions), possibly resulting in a loss of funds. Once the transaction
252         /// is constructed, it must be fully signed for and broadcasted by the consumer of the event
253         /// along with the `commitment_tx` enclosed. Note that the `commitment_tx` must always be
254         /// broadcast first, as the child anchor transaction depends on it.
255         ///
256         /// The consumer should be able to sign for any of the additional inputs included within the
257         /// child anchor transaction. To sign its anchor input, an [`InMemorySigner`] should be
258         /// re-derived through [`KeysManager::derive_channel_keys`] with the help of
259         /// [`AnchorDescriptor::channel_keys_id`] and [`AnchorDescriptor::channel_value_satoshis`].
260         ///
261         /// It is possible to receive more than one instance of this event if a valid child anchor
262         /// transaction is never broadcast or is but not with a sufficient fee to be mined. Care should
263         /// be taken by the consumer of the event to ensure any future iterations of the child anchor
264         /// transaction adhere to the [Replace-By-Fee
265         /// rules](https://github.com/bitcoin/bitcoin/blob/master/doc/policy/mempool-replacements.md)
266         /// for fee bumps to be accepted into the mempool, and eventually the chain. As the frequency of
267         /// these events is not user-controlled, users may ignore/drop the event if they are no longer
268         /// able to commit external confirmed funds to the child anchor transaction.
269         ///
270         /// The set of `pending_htlcs` on the commitment transaction to be broadcast can be inspected to
271         /// determine whether a significant portion of the channel's funds are allocated to HTLCs,
272         /// enabling users to make their own decisions regarding the importance of the commitment
273         /// transaction's confirmation. Note that this is not required, but simply exists as an option
274         /// for users to override LDK's behavior. On commitments with no HTLCs (indicated by those with
275         /// an empty `pending_htlcs`), confirmation of the commitment transaction can be considered to
276         /// be not urgent.
277         ///
278         /// [`InMemorySigner`]: crate::chain::keysinterface::InMemorySigner
279         /// [`KeysManager::derive_channel_keys`]: crate::chain::keysinterface::KeysManager::derive_channel_keys
280         ChannelClose {
281                 /// The target feerate that the transaction package, which consists of the commitment
282                 /// transaction and the to-be-crafted child anchor transaction, must meet.
283                 package_target_feerate_sat_per_1000_weight: u32,
284                 /// The channel's commitment transaction to bump the fee of. This transaction should be
285                 /// broadcast along with the anchor transaction constructed as a result of consuming this
286                 /// event.
287                 commitment_tx: Transaction,
288                 /// The absolute fee in satoshis of the commitment transaction. This can be used along the
289                 /// with weight of the commitment transaction to determine its feerate.
290                 commitment_tx_fee_satoshis: u64,
291                 /// The descriptor to sign the anchor input of the anchor transaction constructed as a
292                 /// result of consuming this event.
293                 anchor_descriptor: AnchorDescriptor,
294                 /// The set of pending HTLCs on the commitment transaction that need to be resolved once the
295                 /// commitment transaction confirms.
296                 pending_htlcs: Vec<HTLCOutputInCommitment>,
297         },
298 }
299
300 /// Will be used in [`Event::HTLCIntercepted`] to identify the next hop in the HTLC's path.
301 /// Currently only used in serialization for the sake of maintaining compatibility. More variants
302 /// will be added for general-purpose HTLC forward intercepts as well as trampoline forward
303 /// intercepts in upcoming work.
304 enum InterceptNextHop {
305         FakeScid {
306                 requested_next_hop_scid: u64,
307         },
308 }
309
310 impl_writeable_tlv_based_enum!(InterceptNextHop,
311         (0, FakeScid) => {
312                 (0, requested_next_hop_scid, required),
313         };
314 );
315
316 /// An Event which you should probably take some action in response to.
317 ///
318 /// Note that while Writeable and Readable are implemented for Event, you probably shouldn't use
319 /// them directly as they don't round-trip exactly (for example FundingGenerationReady is never
320 /// written as it makes no sense to respond to it after reconnecting to peers).
321 #[derive(Clone, Debug)]
322 pub enum Event {
323         /// Used to indicate that the client should generate a funding transaction with the given
324         /// parameters and then call [`ChannelManager::funding_transaction_generated`].
325         /// Generated in [`ChannelManager`] message handling.
326         /// Note that *all inputs* in the funding transaction must spend SegWit outputs or your
327         /// counterparty can steal your funds!
328         ///
329         /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
330         /// [`ChannelManager::funding_transaction_generated`]: crate::ln::channelmanager::ChannelManager::funding_transaction_generated
331         FundingGenerationReady {
332                 /// The random channel_id we picked which you'll need to pass into
333                 /// [`ChannelManager::funding_transaction_generated`].
334                 ///
335                 /// [`ChannelManager::funding_transaction_generated`]: crate::ln::channelmanager::ChannelManager::funding_transaction_generated
336                 temporary_channel_id: [u8; 32],
337                 /// The counterparty's node_id, which you'll need to pass back into
338                 /// [`ChannelManager::funding_transaction_generated`].
339                 ///
340                 /// [`ChannelManager::funding_transaction_generated`]: crate::ln::channelmanager::ChannelManager::funding_transaction_generated
341                 counterparty_node_id: PublicKey,
342                 /// The value, in satoshis, that the output should have.
343                 channel_value_satoshis: u64,
344                 /// The script which should be used in the transaction output.
345                 output_script: Script,
346                 /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`], or a
347                 /// random value for an inbound channel. This may be zero for objects serialized with LDK
348                 /// versions prior to 0.0.113.
349                 ///
350                 /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
351                 user_channel_id: u128,
352         },
353         /// Indicates we've received (an offer of) money! Just gotta dig out that payment preimage and
354         /// feed it to [`ChannelManager::claim_funds`] to get it....
355         ///
356         /// Note that if the preimage is not known, you should call
357         /// [`ChannelManager::fail_htlc_backwards`] to free up resources for this HTLC and avoid
358         /// network congestion.
359         /// If you fail to call either [`ChannelManager::claim_funds`] or
360         /// [`ChannelManager::fail_htlc_backwards`] within the HTLC's timeout, the HTLC will be
361         /// automatically failed.
362         ///
363         /// # Note
364         /// LDK will not stop an inbound payment from being paid multiple times, so multiple
365         /// `PaymentReceived` events may be generated for the same payment.
366         ///
367         /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
368         /// [`ChannelManager::fail_htlc_backwards`]: crate::ln::channelmanager::ChannelManager::fail_htlc_backwards
369         PaymentReceived {
370                 /// The node that received the payment.
371                 /// This is useful to identify payments which were received via [phantom node payments].
372                 /// This field will always be filled in when the event was generated by LDK versions
373                 /// 0.0.113 and above.
374                 ///
375                 /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
376                 receiver_node_id: Option<PublicKey>,
377                 /// The hash for which the preimage should be handed to the ChannelManager. Note that LDK will
378                 /// not stop you from registering duplicate payment hashes for inbound payments.
379                 payment_hash: PaymentHash,
380                 /// The value, in thousandths of a satoshi, that this payment is for.
381                 amount_msat: u64,
382                 /// Information for claiming this received payment, based on whether the purpose of the
383                 /// payment is to pay an invoice or to send a spontaneous payment.
384                 purpose: PaymentPurpose,
385                 /// The `channel_id` indicating over which channel we received the payment.
386                 via_channel_id: Option<[u8; 32]>,
387                 /// The `user_channel_id` indicating over which channel we received the payment.
388                 via_user_channel_id: Option<u128>,
389         },
390         /// Indicates a payment has been claimed and we've received money!
391         ///
392         /// This most likely occurs when [`ChannelManager::claim_funds`] has been called in response
393         /// to an [`Event::PaymentReceived`]. However, if we previously crashed during a
394         /// [`ChannelManager::claim_funds`] call you may see this event without a corresponding
395         /// [`Event::PaymentReceived`] event.
396         ///
397         /// # Note
398         /// LDK will not stop an inbound payment from being paid multiple times, so multiple
399         /// `PaymentReceived` events may be generated for the same payment. If you then call
400         /// [`ChannelManager::claim_funds`] twice for the same [`Event::PaymentReceived`] you may get
401         /// multiple `PaymentClaimed` events.
402         ///
403         /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
404         PaymentClaimed {
405                 /// The node that received the payment.
406                 /// This is useful to identify payments which were received via [phantom node payments].
407                 /// This field will always be filled in when the event was generated by LDK versions
408                 /// 0.0.113 and above.
409                 ///
410                 /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
411                 receiver_node_id: Option<PublicKey>,
412                 /// The payment hash of the claimed payment. Note that LDK will not stop you from
413                 /// registering duplicate payment hashes for inbound payments.
414                 payment_hash: PaymentHash,
415                 /// The value, in thousandths of a satoshi, that this payment is for.
416                 amount_msat: u64,
417                 /// The purpose of this claimed payment, i.e. whether the payment was for an invoice or a
418                 /// spontaneous payment.
419                 purpose: PaymentPurpose,
420         },
421         /// Indicates an outbound payment we made succeeded (i.e. it made it all the way to its target
422         /// and we got back the payment preimage for it).
423         ///
424         /// Note for MPP payments: in rare cases, this event may be preceded by a `PaymentPathFailed`
425         /// event. In this situation, you SHOULD treat this payment as having succeeded.
426         PaymentSent {
427                 /// The id returned by [`ChannelManager::send_payment`] and used with
428                 /// [`ChannelManager::retry_payment`].
429                 ///
430                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
431                 /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
432                 payment_id: Option<PaymentId>,
433                 /// The preimage to the hash given to ChannelManager::send_payment.
434                 /// Note that this serves as a payment receipt, if you wish to have such a thing, you must
435                 /// store it somehow!
436                 payment_preimage: PaymentPreimage,
437                 /// The hash that was given to [`ChannelManager::send_payment`].
438                 ///
439                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
440                 payment_hash: PaymentHash,
441                 /// The total fee which was spent at intermediate hops in this payment, across all paths.
442                 ///
443                 /// Note that, like [`Route::get_total_fees`] this does *not* include any potential
444                 /// overpayment to the recipient node.
445                 ///
446                 /// If the recipient or an intermediate node misbehaves and gives us free money, this may
447                 /// overstate the amount paid, though this is unlikely.
448                 ///
449                 /// [`Route::get_total_fees`]: crate::routing::router::Route::get_total_fees
450                 fee_paid_msat: Option<u64>,
451         },
452         /// Indicates an outbound payment failed. Individual [`Event::PaymentPathFailed`] events
453         /// provide failure information for each MPP part in the payment.
454         ///
455         /// This event is provided once there are no further pending HTLCs for the payment and the
456         /// payment is no longer retryable due to [`ChannelManager::abandon_payment`] having been
457         /// called for the corresponding payment.
458         ///
459         /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
460         PaymentFailed {
461                 /// The id returned by [`ChannelManager::send_payment`] and used with
462                 /// [`ChannelManager::retry_payment`] and [`ChannelManager::abandon_payment`].
463                 ///
464                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
465                 /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
466                 /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
467                 payment_id: PaymentId,
468                 /// The hash that was given to [`ChannelManager::send_payment`].
469                 ///
470                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
471                 payment_hash: PaymentHash,
472         },
473         /// Indicates that a path for an outbound payment was successful.
474         ///
475         /// Always generated after [`Event::PaymentSent`] and thus useful for scoring channels. See
476         /// [`Event::PaymentSent`] for obtaining the payment preimage.
477         PaymentPathSuccessful {
478                 /// The id returned by [`ChannelManager::send_payment`] and used with
479                 /// [`ChannelManager::retry_payment`].
480                 ///
481                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
482                 /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
483                 payment_id: PaymentId,
484                 /// The hash that was given to [`ChannelManager::send_payment`].
485                 ///
486                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
487                 payment_hash: Option<PaymentHash>,
488                 /// The payment path that was successful.
489                 ///
490                 /// May contain a closed channel if the HTLC sent along the path was fulfilled on chain.
491                 path: Vec<RouteHop>,
492         },
493         /// Indicates an outbound HTLC we sent failed. Probably some intermediary node dropped
494         /// something. You may wish to retry with a different route.
495         ///
496         /// If you have given up retrying this payment and wish to fail it, you MUST call
497         /// [`ChannelManager::abandon_payment`] at least once for a given [`PaymentId`] or memory
498         /// related to payment tracking will leak.
499         ///
500         /// Note that this does *not* indicate that all paths for an MPP payment have failed, see
501         /// [`Event::PaymentFailed`] and [`all_paths_failed`].
502         ///
503         /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
504         /// [`all_paths_failed`]: Self::PaymentPathFailed::all_paths_failed
505         PaymentPathFailed {
506                 /// The id returned by [`ChannelManager::send_payment`] and used with
507                 /// [`ChannelManager::retry_payment`] and [`ChannelManager::abandon_payment`].
508                 ///
509                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
510                 /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
511                 /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
512                 payment_id: Option<PaymentId>,
513                 /// The hash that was given to [`ChannelManager::send_payment`].
514                 ///
515                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
516                 payment_hash: PaymentHash,
517                 /// Indicates the payment was rejected for some reason by the recipient. This implies that
518                 /// the payment has failed, not just the route in question. If this is not set, you may
519                 /// retry the payment via a different route.
520                 payment_failed_permanently: bool,
521                 /// Any failure information conveyed via the Onion return packet by a node along the failed
522                 /// payment route.
523                 ///
524                 /// Should be applied to the [`NetworkGraph`] so that routing decisions can take into
525                 /// account the update.
526                 ///
527                 /// [`NetworkGraph`]: crate::routing::gossip::NetworkGraph
528                 network_update: Option<NetworkUpdate>,
529                 /// For both single-path and multi-path payments, this is set if all paths of the payment have
530                 /// failed. This will be set to false if (1) this is an MPP payment and (2) other parts of the
531                 /// larger MPP payment were still in flight when this event was generated.
532                 ///
533                 /// Note that if you are retrying individual MPP parts, using this value to determine if a
534                 /// payment has fully failed is race-y. Because multiple failures can happen prior to events
535                 /// being processed, you may retry in response to a first failure, with a second failure
536                 /// (with `all_paths_failed` set) still pending. Then, when the second failure is processed
537                 /// you will see `all_paths_failed` set even though the retry of the first failure still
538                 /// has an associated in-flight HTLC. See (1) for an example of such a failure.
539                 ///
540                 /// If you wish to retry individual MPP parts and learn when a payment has failed, you must
541                 /// call [`ChannelManager::abandon_payment`] and wait for a [`Event::PaymentFailed`] event.
542                 ///
543                 /// (1) <https://github.com/lightningdevkit/rust-lightning/issues/1164>
544                 ///
545                 /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
546                 all_paths_failed: bool,
547                 /// The payment path that failed.
548                 path: Vec<RouteHop>,
549                 /// The channel responsible for the failed payment path.
550                 ///
551                 /// Note that for route hints or for the first hop in a path this may be an SCID alias and
552                 /// may not refer to a channel in the public network graph. These aliases may also collide
553                 /// with channels in the public network graph.
554                 ///
555                 /// If this is `Some`, then the corresponding channel should be avoided when the payment is
556                 /// retried. May be `None` for older [`Event`] serializations.
557                 short_channel_id: Option<u64>,
558                 /// Parameters needed to compute a new [`Route`] when retrying the failed payment path.
559                 ///
560                 /// See [`find_route`] for details.
561                 ///
562                 /// [`Route`]: crate::routing::router::Route
563                 /// [`find_route`]: crate::routing::router::find_route
564                 retry: Option<RouteParameters>,
565 #[cfg(test)]
566                 error_code: Option<u16>,
567 #[cfg(test)]
568                 error_data: Option<Vec<u8>>,
569         },
570         /// Indicates that a probe payment we sent returned successful, i.e., only failed at the destination.
571         ProbeSuccessful {
572                 /// The id returned by [`ChannelManager::send_probe`].
573                 ///
574                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
575                 payment_id: PaymentId,
576                 /// The hash generated by [`ChannelManager::send_probe`].
577                 ///
578                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
579                 payment_hash: PaymentHash,
580                 /// The payment path that was successful.
581                 path: Vec<RouteHop>,
582         },
583         /// Indicates that a probe payment we sent failed at an intermediary node on the path.
584         ProbeFailed {
585                 /// The id returned by [`ChannelManager::send_probe`].
586                 ///
587                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
588                 payment_id: PaymentId,
589                 /// The hash generated by [`ChannelManager::send_probe`].
590                 ///
591                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
592                 payment_hash: PaymentHash,
593                 /// The payment path that failed.
594                 path: Vec<RouteHop>,
595                 /// The channel responsible for the failed probe.
596                 ///
597                 /// Note that for route hints or for the first hop in a path this may be an SCID alias and
598                 /// may not refer to a channel in the public network graph. These aliases may also collide
599                 /// with channels in the public network graph.
600                 short_channel_id: Option<u64>,
601         },
602         /// Used to indicate that [`ChannelManager::process_pending_htlc_forwards`] should be called at
603         /// a time in the future.
604         ///
605         /// [`ChannelManager::process_pending_htlc_forwards`]: crate::ln::channelmanager::ChannelManager::process_pending_htlc_forwards
606         PendingHTLCsForwardable {
607                 /// The minimum amount of time that should be waited prior to calling
608                 /// process_pending_htlc_forwards. To increase the effort required to correlate payments,
609                 /// you should wait a random amount of time in roughly the range (now + time_forwardable,
610                 /// now + 5*time_forwardable).
611                 time_forwardable: Duration,
612         },
613         /// Used to indicate that we've intercepted an HTLC forward. This event will only be generated if
614         /// you've encoded an intercept scid in the receiver's invoice route hints using
615         /// [`ChannelManager::get_intercept_scid`].
616         ///
617         /// [`ChannelManager::forward_intercepted_htlc`] or
618         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to this event. See
619         /// their docs for more information.
620         ///
621         /// [`ChannelManager::get_intercept_scid`]: crate::ln::channelmanager::ChannelManager::get_intercept_scid
622         /// [`ChannelManager::forward_intercepted_htlc`]: crate::ln::channelmanager::ChannelManager::forward_intercepted_htlc
623         /// [`ChannelManager::fail_intercepted_htlc`]: crate::ln::channelmanager::ChannelManager::fail_intercepted_htlc
624         HTLCIntercepted {
625                 /// An id to help LDK identify which HTLC is being forwarded or failed.
626                 intercept_id: InterceptId,
627                 /// The fake scid that was programmed as the next hop's scid, generated using
628                 /// [`ChannelManager::get_intercept_scid`].
629                 ///
630                 /// [`ChannelManager::get_intercept_scid`]: crate::ln::channelmanager::ChannelManager::get_intercept_scid
631                 requested_next_hop_scid: u64,
632                 /// The payment hash used for this HTLC.
633                 payment_hash: PaymentHash,
634                 /// How many msats were received on the inbound edge of this HTLC.
635                 inbound_amount_msat: u64,
636                 /// How many msats the payer intended to route to the next node. Depending on the reason you are
637                 /// intercepting this payment, you might take a fee by forwarding less than this amount.
638                 ///
639                 /// Note that LDK will NOT check that expected fees were factored into this value. You MUST
640                 /// check that whatever fee you want has been included here or subtract it as required. Further,
641                 /// LDK will not stop you from forwarding more than you received.
642                 expected_outbound_amount_msat: u64,
643         },
644         /// Used to indicate that an output which you should know how to spend was confirmed on chain
645         /// and is now spendable.
646         /// Such an output will *not* ever be spent by rust-lightning, and are not at risk of your
647         /// counterparty spending them due to some kind of timeout. Thus, you need to store them
648         /// somewhere and spend them when you create on-chain transactions.
649         SpendableOutputs {
650                 /// The outputs which you should store as spendable by you.
651                 outputs: Vec<SpendableOutputDescriptor>,
652         },
653         /// This event is generated when a payment has been successfully forwarded through us and a
654         /// forwarding fee earned.
655         PaymentForwarded {
656                 /// The incoming channel between the previous node and us. This is only `None` for events
657                 /// generated or serialized by versions prior to 0.0.107.
658                 prev_channel_id: Option<[u8; 32]>,
659                 /// The outgoing channel between the next node and us. This is only `None` for events
660                 /// generated or serialized by versions prior to 0.0.107.
661                 next_channel_id: Option<[u8; 32]>,
662                 /// The fee, in milli-satoshis, which was earned as a result of the payment.
663                 ///
664                 /// Note that if we force-closed the channel over which we forwarded an HTLC while the HTLC
665                 /// was pending, the amount the next hop claimed will have been rounded down to the nearest
666                 /// whole satoshi. Thus, the fee calculated here may be higher than expected as we still
667                 /// claimed the full value in millisatoshis from the source. In this case,
668                 /// `claim_from_onchain_tx` will be set.
669                 ///
670                 /// If the channel which sent us the payment has been force-closed, we will claim the funds
671                 /// via an on-chain transaction. In that case we do not yet know the on-chain transaction
672                 /// fees which we will spend and will instead set this to `None`. It is possible duplicate
673                 /// `PaymentForwarded` events are generated for the same payment iff `fee_earned_msat` is
674                 /// `None`.
675                 fee_earned_msat: Option<u64>,
676                 /// If this is `true`, the forwarded HTLC was claimed by our counterparty via an on-chain
677                 /// transaction.
678                 claim_from_onchain_tx: bool,
679         },
680         /// Used to indicate that a channel with the given `channel_id` is ready to
681         /// be used. This event is emitted either when the funding transaction has been confirmed
682         /// on-chain, or, in case of a 0conf channel, when both parties have confirmed the channel
683         /// establishment.
684         ChannelReady {
685                 /// The channel_id of the channel that is ready.
686                 channel_id: [u8; 32],
687                 /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
688                 /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
689                 /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
690                 /// `user_channel_id` will be randomized for an inbound channel.
691                 ///
692                 /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
693                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
694                 /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
695                 user_channel_id: u128,
696                 /// The node_id of the channel counterparty.
697                 counterparty_node_id: PublicKey,
698                 /// The features that this channel will operate with.
699                 channel_type: ChannelTypeFeatures,
700         },
701         /// Used to indicate that a previously opened channel with the given `channel_id` is in the
702         /// process of closure.
703         ChannelClosed  {
704                 /// The channel_id of the channel which has been closed. Note that on-chain transactions
705                 /// resolving the channel are likely still awaiting confirmation.
706                 channel_id: [u8; 32],
707                 /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
708                 /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
709                 /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
710                 /// `user_channel_id` will be randomized for inbound channels.
711                 /// This may be zero for inbound channels serialized prior to 0.0.113 and will always be
712                 /// zero for objects serialized with LDK versions prior to 0.0.102.
713                 ///
714                 /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
715                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
716                 /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
717                 user_channel_id: u128,
718                 /// The reason the channel was closed.
719                 reason: ClosureReason
720         },
721         /// Used to indicate to the user that they can abandon the funding transaction and recycle the
722         /// inputs for another purpose.
723         DiscardFunding {
724                 /// The channel_id of the channel which has been closed.
725                 channel_id: [u8; 32],
726                 /// The full transaction received from the user
727                 transaction: Transaction
728         },
729         /// Indicates a request to open a new channel by a peer.
730         ///
731         /// To accept the request, call [`ChannelManager::accept_inbound_channel`]. To reject the
732         /// request, call [`ChannelManager::force_close_without_broadcasting_txn`].
733         ///
734         /// The event is only triggered when a new open channel request is received and the
735         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true.
736         ///
737         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
738         /// [`ChannelManager::force_close_without_broadcasting_txn`]: crate::ln::channelmanager::ChannelManager::force_close_without_broadcasting_txn
739         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
740         OpenChannelRequest {
741                 /// The temporary channel ID of the channel requested to be opened.
742                 ///
743                 /// When responding to the request, the `temporary_channel_id` should be passed
744                 /// back to the ChannelManager through [`ChannelManager::accept_inbound_channel`] to accept,
745                 /// or through [`ChannelManager::force_close_without_broadcasting_txn`] to reject.
746                 ///
747                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
748                 /// [`ChannelManager::force_close_without_broadcasting_txn`]: crate::ln::channelmanager::ChannelManager::force_close_without_broadcasting_txn
749                 temporary_channel_id: [u8; 32],
750                 /// The node_id of the counterparty requesting to open the channel.
751                 ///
752                 /// When responding to the request, the `counterparty_node_id` should be passed
753                 /// back to the `ChannelManager` through [`ChannelManager::accept_inbound_channel`] to
754                 /// accept the request, or through [`ChannelManager::force_close_without_broadcasting_txn`] to reject the
755                 /// request.
756                 ///
757                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
758                 /// [`ChannelManager::force_close_without_broadcasting_txn`]: crate::ln::channelmanager::ChannelManager::force_close_without_broadcasting_txn
759                 counterparty_node_id: PublicKey,
760                 /// The channel value of the requested channel.
761                 funding_satoshis: u64,
762                 /// Our starting balance in the channel if the request is accepted, in milli-satoshi.
763                 push_msat: u64,
764                 /// The features that this channel will operate with. If you reject the channel, a
765                 /// well-behaved counterparty may automatically re-attempt the channel with a new set of
766                 /// feature flags.
767                 ///
768                 /// Note that if [`ChannelTypeFeatures::supports_scid_privacy`] returns true on this type,
769                 /// the resulting [`ChannelManager`] will not be readable by versions of LDK prior to
770                 /// 0.0.106.
771                 ///
772                 /// Furthermore, note that if [`ChannelTypeFeatures::supports_zero_conf`] returns true on this type,
773                 /// the resulting [`ChannelManager`] will not be readable by versions of LDK prior to
774                 /// 0.0.107. Channels setting this type also need to get manually accepted via
775                 /// [`crate::ln::channelmanager::ChannelManager::accept_inbound_channel_from_trusted_peer_0conf`],
776                 /// or will be rejected otherwise.
777                 ///
778                 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
779                 channel_type: ChannelTypeFeatures,
780         },
781         /// Indicates that the HTLC was accepted, but could not be processed when or after attempting to
782         /// forward it.
783         ///
784         /// Some scenarios where this event may be sent include:
785         /// * Insufficient capacity in the outbound channel
786         /// * While waiting to forward the HTLC, the channel it is meant to be forwarded through closes
787         /// * When an unknown SCID is requested for forwarding a payment.
788         /// * Claiming an amount for an MPP payment that exceeds the HTLC total
789         /// * The HTLC has timed out
790         ///
791         /// This event, however, does not get generated if an HTLC fails to meet the forwarding
792         /// requirements (i.e. insufficient fees paid, or a CLTV that is too soon).
793         HTLCHandlingFailed {
794                 /// The channel over which the HTLC was received.
795                 prev_channel_id: [u8; 32],
796                 /// Destination of the HTLC that failed to be processed.
797                 failed_next_destination: HTLCDestination,
798         },
799         #[cfg(anchors)]
800         /// Indicates that a transaction originating from LDK needs to have its fee bumped. This event
801         /// requires confirmed external funds to be readily available to spend.
802         ///
803         /// LDK does not currently generate this event. It is limited to the scope of channels with
804         /// anchor outputs, which will be introduced in a future release.
805         BumpTransaction(BumpTransactionEvent),
806 }
807
808 impl Writeable for Event {
809         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
810                 match self {
811                         &Event::FundingGenerationReady { .. } => {
812                                 0u8.write(writer)?;
813                                 // We never write out FundingGenerationReady events as, upon disconnection, peers
814                                 // drop any channels which have not yet exchanged funding_signed.
815                         },
816                         &Event::PaymentReceived { ref payment_hash, ref amount_msat, ref purpose, ref receiver_node_id, ref via_channel_id, ref via_user_channel_id } => {
817                                 1u8.write(writer)?;
818                                 let mut payment_secret = None;
819                                 let payment_preimage;
820                                 match &purpose {
821                                         PaymentPurpose::InvoicePayment { payment_preimage: preimage, payment_secret: secret } => {
822                                                 payment_secret = Some(secret);
823                                                 payment_preimage = *preimage;
824                                         },
825                                         PaymentPurpose::SpontaneousPayment(preimage) => {
826                                                 payment_preimage = Some(*preimage);
827                                         }
828                                 }
829                                 write_tlv_fields!(writer, {
830                                         (0, payment_hash, required),
831                                         (1, receiver_node_id, option),
832                                         (2, payment_secret, option),
833                                         (3, via_channel_id, option),
834                                         (4, amount_msat, required),
835                                         (5, via_user_channel_id, option),
836                                         (6, 0u64, required), // user_payment_id required for compatibility with 0.0.103 and earlier
837                                         (8, payment_preimage, option),
838                                 });
839                         },
840                         &Event::PaymentSent { ref payment_id, ref payment_preimage, ref payment_hash, ref fee_paid_msat } => {
841                                 2u8.write(writer)?;
842                                 write_tlv_fields!(writer, {
843                                         (0, payment_preimage, required),
844                                         (1, payment_hash, required),
845                                         (3, payment_id, option),
846                                         (5, fee_paid_msat, option),
847                                 });
848                         },
849                         &Event::PaymentPathFailed {
850                                 ref payment_id, ref payment_hash, ref payment_failed_permanently, ref network_update,
851                                 ref all_paths_failed, ref path, ref short_channel_id, ref retry,
852                                 #[cfg(test)]
853                                 ref error_code,
854                                 #[cfg(test)]
855                                 ref error_data,
856                         } => {
857                                 3u8.write(writer)?;
858                                 #[cfg(test)]
859                                 error_code.write(writer)?;
860                                 #[cfg(test)]
861                                 error_data.write(writer)?;
862                                 write_tlv_fields!(writer, {
863                                         (0, payment_hash, required),
864                                         (1, network_update, option),
865                                         (2, payment_failed_permanently, required),
866                                         (3, all_paths_failed, required),
867                                         (5, *path, vec_type),
868                                         (7, short_channel_id, option),
869                                         (9, retry, option),
870                                         (11, payment_id, option),
871                                 });
872                         },
873                         &Event::PendingHTLCsForwardable { time_forwardable: _ } => {
874                                 4u8.write(writer)?;
875                                 // Note that we now ignore these on the read end as we'll re-generate them in
876                                 // ChannelManager, we write them here only for backwards compatibility.
877                         },
878                         &Event::SpendableOutputs { ref outputs } => {
879                                 5u8.write(writer)?;
880                                 write_tlv_fields!(writer, {
881                                         (0, WithoutLength(outputs), required),
882                                 });
883                         },
884                         &Event::HTLCIntercepted { requested_next_hop_scid, payment_hash, inbound_amount_msat, expected_outbound_amount_msat, intercept_id } => {
885                                 6u8.write(writer)?;
886                                 let intercept_scid = InterceptNextHop::FakeScid { requested_next_hop_scid };
887                                 write_tlv_fields!(writer, {
888                                         (0, intercept_id, required),
889                                         (2, intercept_scid, required),
890                                         (4, payment_hash, required),
891                                         (6, inbound_amount_msat, required),
892                                         (8, expected_outbound_amount_msat, required),
893                                 });
894                         }
895                         &Event::PaymentForwarded { fee_earned_msat, prev_channel_id, claim_from_onchain_tx, next_channel_id } => {
896                                 7u8.write(writer)?;
897                                 write_tlv_fields!(writer, {
898                                         (0, fee_earned_msat, option),
899                                         (1, prev_channel_id, option),
900                                         (2, claim_from_onchain_tx, required),
901                                         (3, next_channel_id, option),
902                                 });
903                         },
904                         &Event::ChannelClosed { ref channel_id, ref user_channel_id, ref reason } => {
905                                 9u8.write(writer)?;
906                                 // `user_channel_id` used to be a single u64 value. In order to remain backwards
907                                 // compatible with versions prior to 0.0.113, the u128 is serialized as two
908                                 // separate u64 values.
909                                 let user_channel_id_low = *user_channel_id as u64;
910                                 let user_channel_id_high = (*user_channel_id >> 64) as u64;
911                                 write_tlv_fields!(writer, {
912                                         (0, channel_id, required),
913                                         (1, user_channel_id_low, required),
914                                         (2, reason, required),
915                                         (3, user_channel_id_high, required),
916                                 });
917                         },
918                         &Event::DiscardFunding { ref channel_id, ref transaction } => {
919                                 11u8.write(writer)?;
920                                 write_tlv_fields!(writer, {
921                                         (0, channel_id, required),
922                                         (2, transaction, required)
923                                 })
924                         },
925                         &Event::PaymentPathSuccessful { ref payment_id, ref payment_hash, ref path } => {
926                                 13u8.write(writer)?;
927                                 write_tlv_fields!(writer, {
928                                         (0, payment_id, required),
929                                         (2, payment_hash, option),
930                                         (4, *path, vec_type)
931                                 })
932                         },
933                         &Event::PaymentFailed { ref payment_id, ref payment_hash } => {
934                                 15u8.write(writer)?;
935                                 write_tlv_fields!(writer, {
936                                         (0, payment_id, required),
937                                         (2, payment_hash, required),
938                                 })
939                         },
940                         &Event::OpenChannelRequest { .. } => {
941                                 17u8.write(writer)?;
942                                 // We never write the OpenChannelRequest events as, upon disconnection, peers
943                                 // drop any channels which have not yet exchanged funding_signed.
944                         },
945                         &Event::PaymentClaimed { ref payment_hash, ref amount_msat, ref purpose, ref receiver_node_id } => {
946                                 19u8.write(writer)?;
947                                 write_tlv_fields!(writer, {
948                                         (0, payment_hash, required),
949                                         (1, receiver_node_id, option),
950                                         (2, purpose, required),
951                                         (4, amount_msat, required),
952                                 });
953                         },
954                         &Event::ProbeSuccessful { ref payment_id, ref payment_hash, ref path } => {
955                                 21u8.write(writer)?;
956                                 write_tlv_fields!(writer, {
957                                         (0, payment_id, required),
958                                         (2, payment_hash, required),
959                                         (4, *path, vec_type)
960                                 })
961                         },
962                         &Event::ProbeFailed { ref payment_id, ref payment_hash, ref path, ref short_channel_id } => {
963                                 23u8.write(writer)?;
964                                 write_tlv_fields!(writer, {
965                                         (0, payment_id, required),
966                                         (2, payment_hash, required),
967                                         (4, *path, vec_type),
968                                         (6, short_channel_id, option),
969                                 })
970                         },
971                         &Event::HTLCHandlingFailed { ref prev_channel_id, ref failed_next_destination } => {
972                                 25u8.write(writer)?;
973                                 write_tlv_fields!(writer, {
974                                         (0, prev_channel_id, required),
975                                         (2, failed_next_destination, required),
976                                 })
977                         },
978                         #[cfg(anchors)]
979                         &Event::BumpTransaction(ref event)=> {
980                                 27u8.write(writer)?;
981                                 match event {
982                                         // We never write the ChannelClose events as they'll be replayed upon restarting
983                                         // anyway if the commitment transaction remains unconfirmed.
984                                         BumpTransactionEvent::ChannelClose { .. } => {}
985                                 }
986                         }
987                         &Event::ChannelReady { ref channel_id, ref user_channel_id, ref counterparty_node_id, ref channel_type } => {
988                                 29u8.write(writer)?;
989                                 write_tlv_fields!(writer, {
990                                         (0, channel_id, required),
991                                         (2, user_channel_id, required),
992                                         (4, counterparty_node_id, required),
993                                         (6, channel_type, required),
994                                 });
995                         },
996                         // Note that, going forward, all new events must only write data inside of
997                         // `write_tlv_fields`. Versions 0.0.101+ will ignore odd-numbered events that write
998                         // data via `write_tlv_fields`.
999                 }
1000                 Ok(())
1001         }
1002 }
1003 impl MaybeReadable for Event {
1004         fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, msgs::DecodeError> {
1005                 match Readable::read(reader)? {
1006                         // Note that we do not write a length-prefixed TLV for FundingGenerationReady events,
1007                         // unlike all other events, thus we return immediately here.
1008                         0u8 => Ok(None),
1009                         1u8 => {
1010                                 let f = || {
1011                                         let mut payment_hash = PaymentHash([0; 32]);
1012                                         let mut payment_preimage = None;
1013                                         let mut payment_secret = None;
1014                                         let mut amount_msat = 0;
1015                                         let mut receiver_node_id = None;
1016                                         let mut _user_payment_id = None::<u64>; // For compatibility with 0.0.103 and earlier
1017                                         let mut via_channel_id = None;
1018                                         let mut via_user_channel_id = None;
1019                                         read_tlv_fields!(reader, {
1020                                                 (0, payment_hash, required),
1021                                                 (1, receiver_node_id, option),
1022                                                 (2, payment_secret, option),
1023                                                 (3, via_channel_id, option),
1024                                                 (4, amount_msat, required),
1025                                                 (5, via_user_channel_id, option),
1026                                                 (6, _user_payment_id, option),
1027                                                 (8, payment_preimage, option),
1028                                         });
1029                                         let purpose = match payment_secret {
1030                                                 Some(secret) => PaymentPurpose::InvoicePayment {
1031                                                         payment_preimage,
1032                                                         payment_secret: secret
1033                                                 },
1034                                                 None if payment_preimage.is_some() => PaymentPurpose::SpontaneousPayment(payment_preimage.unwrap()),
1035                                                 None => return Err(msgs::DecodeError::InvalidValue),
1036                                         };
1037                                         Ok(Some(Event::PaymentReceived {
1038                                                 receiver_node_id,
1039                                                 payment_hash,
1040                                                 amount_msat,
1041                                                 purpose,
1042                                                 via_channel_id,
1043                                                 via_user_channel_id,
1044                                         }))
1045                                 };
1046                                 f()
1047                         },
1048                         2u8 => {
1049                                 let f = || {
1050                                         let mut payment_preimage = PaymentPreimage([0; 32]);
1051                                         let mut payment_hash = None;
1052                                         let mut payment_id = None;
1053                                         let mut fee_paid_msat = None;
1054                                         read_tlv_fields!(reader, {
1055                                                 (0, payment_preimage, required),
1056                                                 (1, payment_hash, option),
1057                                                 (3, payment_id, option),
1058                                                 (5, fee_paid_msat, option),
1059                                         });
1060                                         if payment_hash.is_none() {
1061                                                 payment_hash = Some(PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner()));
1062                                         }
1063                                         Ok(Some(Event::PaymentSent {
1064                                                 payment_id,
1065                                                 payment_preimage,
1066                                                 payment_hash: payment_hash.unwrap(),
1067                                                 fee_paid_msat,
1068                                         }))
1069                                 };
1070                                 f()
1071                         },
1072                         3u8 => {
1073                                 let f = || {
1074                                         #[cfg(test)]
1075                                         let error_code = Readable::read(reader)?;
1076                                         #[cfg(test)]
1077                                         let error_data = Readable::read(reader)?;
1078                                         let mut payment_hash = PaymentHash([0; 32]);
1079                                         let mut payment_failed_permanently = false;
1080                                         let mut network_update = None;
1081                                         let mut all_paths_failed = Some(true);
1082                                         let mut path: Option<Vec<RouteHop>> = Some(vec![]);
1083                                         let mut short_channel_id = None;
1084                                         let mut retry = None;
1085                                         let mut payment_id = None;
1086                                         read_tlv_fields!(reader, {
1087                                                 (0, payment_hash, required),
1088                                                 (1, network_update, ignorable),
1089                                                 (2, payment_failed_permanently, required),
1090                                                 (3, all_paths_failed, option),
1091                                                 (5, path, vec_type),
1092                                                 (7, short_channel_id, option),
1093                                                 (9, retry, option),
1094                                                 (11, payment_id, option),
1095                                         });
1096                                         Ok(Some(Event::PaymentPathFailed {
1097                                                 payment_id,
1098                                                 payment_hash,
1099                                                 payment_failed_permanently,
1100                                                 network_update,
1101                                                 all_paths_failed: all_paths_failed.unwrap(),
1102                                                 path: path.unwrap(),
1103                                                 short_channel_id,
1104                                                 retry,
1105                                                 #[cfg(test)]
1106                                                 error_code,
1107                                                 #[cfg(test)]
1108                                                 error_data,
1109                                         }))
1110                                 };
1111                                 f()
1112                         },
1113                         4u8 => Ok(None),
1114                         5u8 => {
1115                                 let f = || {
1116                                         let mut outputs = WithoutLength(Vec::new());
1117                                         read_tlv_fields!(reader, {
1118                                                 (0, outputs, required),
1119                                         });
1120                                         Ok(Some(Event::SpendableOutputs { outputs: outputs.0 }))
1121                                 };
1122                                 f()
1123                         },
1124                         6u8 => {
1125                                 let mut payment_hash = PaymentHash([0; 32]);
1126                                 let mut intercept_id = InterceptId([0; 32]);
1127                                 let mut requested_next_hop_scid = InterceptNextHop::FakeScid { requested_next_hop_scid: 0 };
1128                                 let mut inbound_amount_msat = 0;
1129                                 let mut expected_outbound_amount_msat = 0;
1130                                 read_tlv_fields!(reader, {
1131                                         (0, intercept_id, required),
1132                                         (2, requested_next_hop_scid, required),
1133                                         (4, payment_hash, required),
1134                                         (6, inbound_amount_msat, required),
1135                                         (8, expected_outbound_amount_msat, required),
1136                                 });
1137                                 let next_scid = match requested_next_hop_scid {
1138                                         InterceptNextHop::FakeScid { requested_next_hop_scid: scid } => scid
1139                                 };
1140                                 Ok(Some(Event::HTLCIntercepted {
1141                                         payment_hash,
1142                                         requested_next_hop_scid: next_scid,
1143                                         inbound_amount_msat,
1144                                         expected_outbound_amount_msat,
1145                                         intercept_id,
1146                                 }))
1147                         },
1148                         7u8 => {
1149                                 let f = || {
1150                                         let mut fee_earned_msat = None;
1151                                         let mut prev_channel_id = None;
1152                                         let mut claim_from_onchain_tx = false;
1153                                         let mut next_channel_id = None;
1154                                         read_tlv_fields!(reader, {
1155                                                 (0, fee_earned_msat, option),
1156                                                 (1, prev_channel_id, option),
1157                                                 (2, claim_from_onchain_tx, required),
1158                                                 (3, next_channel_id, option),
1159                                         });
1160                                         Ok(Some(Event::PaymentForwarded { fee_earned_msat, prev_channel_id, claim_from_onchain_tx, next_channel_id }))
1161                                 };
1162                                 f()
1163                         },
1164                         9u8 => {
1165                                 let f = || {
1166                                         let mut channel_id = [0; 32];
1167                                         let mut reason = None;
1168                                         let mut user_channel_id_low_opt: Option<u64> = None;
1169                                         let mut user_channel_id_high_opt: Option<u64> = None;
1170                                         read_tlv_fields!(reader, {
1171                                                 (0, channel_id, required),
1172                                                 (1, user_channel_id_low_opt, option),
1173                                                 (2, reason, ignorable),
1174                                                 (3, user_channel_id_high_opt, option),
1175                                         });
1176                                         if reason.is_none() { return Ok(None); }
1177
1178                                         // `user_channel_id` used to be a single u64 value. In order to remain
1179                                         // backwards compatible with versions prior to 0.0.113, the u128 is serialized
1180                                         // as two separate u64 values.
1181                                         let user_channel_id = (user_channel_id_low_opt.unwrap_or(0) as u128) +
1182                                                 ((user_channel_id_high_opt.unwrap_or(0) as u128) << 64);
1183
1184                                         Ok(Some(Event::ChannelClosed { channel_id, user_channel_id, reason: reason.unwrap() }))
1185                                 };
1186                                 f()
1187                         },
1188                         11u8 => {
1189                                 let f = || {
1190                                         let mut channel_id = [0; 32];
1191                                         let mut transaction = Transaction{ version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: Vec::new() };
1192                                         read_tlv_fields!(reader, {
1193                                                 (0, channel_id, required),
1194                                                 (2, transaction, required),
1195                                         });
1196                                         Ok(Some(Event::DiscardFunding { channel_id, transaction } ))
1197                                 };
1198                                 f()
1199                         },
1200                         13u8 => {
1201                                 let f = || {
1202                                         let mut payment_id = PaymentId([0; 32]);
1203                                         let mut payment_hash = None;
1204                                         let mut path: Option<Vec<RouteHop>> = Some(vec![]);
1205                                         read_tlv_fields!(reader, {
1206                                                 (0, payment_id, required),
1207                                                 (2, payment_hash, option),
1208                                                 (4, path, vec_type),
1209                                         });
1210                                         Ok(Some(Event::PaymentPathSuccessful {
1211                                                 payment_id,
1212                                                 payment_hash,
1213                                                 path: path.unwrap(),
1214                                         }))
1215                                 };
1216                                 f()
1217                         },
1218                         15u8 => {
1219                                 let f = || {
1220                                         let mut payment_hash = PaymentHash([0; 32]);
1221                                         let mut payment_id = PaymentId([0; 32]);
1222                                         read_tlv_fields!(reader, {
1223                                                 (0, payment_id, required),
1224                                                 (2, payment_hash, required),
1225                                         });
1226                                         Ok(Some(Event::PaymentFailed {
1227                                                 payment_id,
1228                                                 payment_hash,
1229                                         }))
1230                                 };
1231                                 f()
1232                         },
1233                         17u8 => {
1234                                 // Value 17 is used for `Event::OpenChannelRequest`.
1235                                 Ok(None)
1236                         },
1237                         19u8 => {
1238                                 let f = || {
1239                                         let mut payment_hash = PaymentHash([0; 32]);
1240                                         let mut purpose = None;
1241                                         let mut amount_msat = 0;
1242                                         let mut receiver_node_id = None;
1243                                         read_tlv_fields!(reader, {
1244                                                 (0, payment_hash, required),
1245                                                 (1, receiver_node_id, option),
1246                                                 (2, purpose, ignorable),
1247                                                 (4, amount_msat, required),
1248                                         });
1249                                         if purpose.is_none() { return Ok(None); }
1250                                         Ok(Some(Event::PaymentClaimed {
1251                                                 receiver_node_id,
1252                                                 payment_hash,
1253                                                 purpose: purpose.unwrap(),
1254                                                 amount_msat,
1255                                         }))
1256                                 };
1257                                 f()
1258                         },
1259                         21u8 => {
1260                                 let f = || {
1261                                         let mut payment_id = PaymentId([0; 32]);
1262                                         let mut payment_hash = PaymentHash([0; 32]);
1263                                         let mut path: Option<Vec<RouteHop>> = Some(vec![]);
1264                                         read_tlv_fields!(reader, {
1265                                                 (0, payment_id, required),
1266                                                 (2, payment_hash, required),
1267                                                 (4, path, vec_type),
1268                                         });
1269                                         Ok(Some(Event::ProbeSuccessful {
1270                                                 payment_id,
1271                                                 payment_hash,
1272                                                 path: path.unwrap(),
1273                                         }))
1274                                 };
1275                                 f()
1276                         },
1277                         23u8 => {
1278                                 let f = || {
1279                                         let mut payment_id = PaymentId([0; 32]);
1280                                         let mut payment_hash = PaymentHash([0; 32]);
1281                                         let mut path: Option<Vec<RouteHop>> = Some(vec![]);
1282                                         let mut short_channel_id = None;
1283                                         read_tlv_fields!(reader, {
1284                                                 (0, payment_id, required),
1285                                                 (2, payment_hash, required),
1286                                                 (4, path, vec_type),
1287                                                 (6, short_channel_id, option),
1288                                         });
1289                                         Ok(Some(Event::ProbeFailed {
1290                                                 payment_id,
1291                                                 payment_hash,
1292                                                 path: path.unwrap(),
1293                                                 short_channel_id,
1294                                         }))
1295                                 };
1296                                 f()
1297                         },
1298                         25u8 => {
1299                                 let f = || {
1300                                         let mut prev_channel_id = [0; 32];
1301                                         let mut failed_next_destination_opt = None;
1302                                         read_tlv_fields!(reader, {
1303                                                 (0, prev_channel_id, required),
1304                                                 (2, failed_next_destination_opt, ignorable),
1305                                         });
1306                                         if let Some(failed_next_destination) = failed_next_destination_opt {
1307                                                 Ok(Some(Event::HTLCHandlingFailed {
1308                                                         prev_channel_id,
1309                                                         failed_next_destination,
1310                                                 }))
1311                                         } else {
1312                                                 // If we fail to read a `failed_next_destination` assume it's because
1313                                                 // `MaybeReadable::read` returned `Ok(None)`, though it's also possible we
1314                                                 // were simply missing the field.
1315                                                 Ok(None)
1316                                         }
1317                                 };
1318                                 f()
1319                         },
1320                         27u8 => Ok(None),
1321                         29u8 => {
1322                                 let f = || {
1323                                         let mut channel_id = [0; 32];
1324                                         let mut user_channel_id: u128 = 0;
1325                                         let mut counterparty_node_id = OptionDeserWrapper(None);
1326                                         let mut channel_type = OptionDeserWrapper(None);
1327                                         read_tlv_fields!(reader, {
1328                                                 (0, channel_id, required),
1329                                                 (2, user_channel_id, required),
1330                                                 (4, counterparty_node_id, required),
1331                                                 (6, channel_type, required),
1332                                         });
1333
1334                                         Ok(Some(Event::ChannelReady {
1335                                                 channel_id,
1336                                                 user_channel_id,
1337                                                 counterparty_node_id: counterparty_node_id.0.unwrap(),
1338                                                 channel_type: channel_type.0.unwrap()
1339                                         }))
1340                                 };
1341                                 f()
1342                         },
1343                         // Versions prior to 0.0.100 did not ignore odd types, instead returning InvalidValue.
1344                         // Version 0.0.100 failed to properly ignore odd types, possibly resulting in corrupt
1345                         // reads.
1346                         x if x % 2 == 1 => {
1347                                 // If the event is of unknown type, assume it was written with `write_tlv_fields`,
1348                                 // which prefixes the whole thing with a length BigSize. Because the event is
1349                                 // odd-type unknown, we should treat it as `Ok(None)` even if it has some TLV
1350                                 // fields that are even. Thus, we avoid using `read_tlv_fields` and simply read
1351                                 // exactly the number of bytes specified, ignoring them entirely.
1352                                 let tlv_len: BigSize = Readable::read(reader)?;
1353                                 FixedLengthReader::new(reader, tlv_len.0)
1354                                         .eat_remaining().map_err(|_| msgs::DecodeError::ShortRead)?;
1355                                 Ok(None)
1356                         },
1357                         _ => Err(msgs::DecodeError::InvalidValue)
1358                 }
1359         }
1360 }
1361
1362 /// An event generated by ChannelManager which indicates a message should be sent to a peer (or
1363 /// broadcast to most peers).
1364 /// These events are handled by PeerManager::process_events if you are using a PeerManager.
1365 #[derive(Clone, Debug)]
1366 pub enum MessageSendEvent {
1367         /// Used to indicate that we've accepted a channel open and should send the accept_channel
1368         /// message provided to the given peer.
1369         SendAcceptChannel {
1370                 /// The node_id of the node which should receive this message
1371                 node_id: PublicKey,
1372                 /// The message which should be sent.
1373                 msg: msgs::AcceptChannel,
1374         },
1375         /// Used to indicate that we've initiated a channel open and should send the open_channel
1376         /// message provided to the given peer.
1377         SendOpenChannel {
1378                 /// The node_id of the node which should receive this message
1379                 node_id: PublicKey,
1380                 /// The message which should be sent.
1381                 msg: msgs::OpenChannel,
1382         },
1383         /// Used to indicate that a funding_created message should be sent to the peer with the given node_id.
1384         SendFundingCreated {
1385                 /// The node_id of the node which should receive this message
1386                 node_id: PublicKey,
1387                 /// The message which should be sent.
1388                 msg: msgs::FundingCreated,
1389         },
1390         /// Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
1391         SendFundingSigned {
1392                 /// The node_id of the node which should receive this message
1393                 node_id: PublicKey,
1394                 /// The message which should be sent.
1395                 msg: msgs::FundingSigned,
1396         },
1397         /// Used to indicate that a channel_ready message should be sent to the peer with the given node_id.
1398         SendChannelReady {
1399                 /// The node_id of the node which should receive these message(s)
1400                 node_id: PublicKey,
1401                 /// The channel_ready message which should be sent.
1402                 msg: msgs::ChannelReady,
1403         },
1404         /// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
1405         SendAnnouncementSignatures {
1406                 /// The node_id of the node which should receive these message(s)
1407                 node_id: PublicKey,
1408                 /// The announcement_signatures message which should be sent.
1409                 msg: msgs::AnnouncementSignatures,
1410         },
1411         /// Used to indicate that a series of HTLC update messages, as well as a commitment_signed
1412         /// message should be sent to the peer with the given node_id.
1413         UpdateHTLCs {
1414                 /// The node_id of the node which should receive these message(s)
1415                 node_id: PublicKey,
1416                 /// The update messages which should be sent. ALL messages in the struct should be sent!
1417                 updates: msgs::CommitmentUpdate,
1418         },
1419         /// Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
1420         SendRevokeAndACK {
1421                 /// The node_id of the node which should receive this message
1422                 node_id: PublicKey,
1423                 /// The message which should be sent.
1424                 msg: msgs::RevokeAndACK,
1425         },
1426         /// Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
1427         SendClosingSigned {
1428                 /// The node_id of the node which should receive this message
1429                 node_id: PublicKey,
1430                 /// The message which should be sent.
1431                 msg: msgs::ClosingSigned,
1432         },
1433         /// Used to indicate that a shutdown message should be sent to the peer with the given node_id.
1434         SendShutdown {
1435                 /// The node_id of the node which should receive this message
1436                 node_id: PublicKey,
1437                 /// The message which should be sent.
1438                 msg: msgs::Shutdown,
1439         },
1440         /// Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
1441         SendChannelReestablish {
1442                 /// The node_id of the node which should receive this message
1443                 node_id: PublicKey,
1444                 /// The message which should be sent.
1445                 msg: msgs::ChannelReestablish,
1446         },
1447         /// Used to send a channel_announcement and channel_update to a specific peer, likely on
1448         /// initial connection to ensure our peers know about our channels.
1449         SendChannelAnnouncement {
1450                 /// The node_id of the node which should receive this message
1451                 node_id: PublicKey,
1452                 /// The channel_announcement which should be sent.
1453                 msg: msgs::ChannelAnnouncement,
1454                 /// The followup channel_update which should be sent.
1455                 update_msg: msgs::ChannelUpdate,
1456         },
1457         /// Used to indicate that a channel_announcement and channel_update should be broadcast to all
1458         /// peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
1459         ///
1460         /// Note that after doing so, you very likely (unless you did so very recently) want to
1461         /// broadcast a node_announcement (e.g. via [`PeerManager::broadcast_node_announcement`]). This
1462         /// ensures that any nodes which see our channel_announcement also have a relevant
1463         /// node_announcement, including relevant feature flags which may be important for routing
1464         /// through or to us.
1465         ///
1466         /// [`PeerManager::broadcast_node_announcement`]: crate::ln::peer_handler::PeerManager::broadcast_node_announcement
1467         BroadcastChannelAnnouncement {
1468                 /// The channel_announcement which should be sent.
1469                 msg: msgs::ChannelAnnouncement,
1470                 /// The followup channel_update which should be sent.
1471                 update_msg: msgs::ChannelUpdate,
1472         },
1473         /// Used to indicate that a channel_update should be broadcast to all peers.
1474         BroadcastChannelUpdate {
1475                 /// The channel_update which should be sent.
1476                 msg: msgs::ChannelUpdate,
1477         },
1478         /// Used to indicate that a channel_update should be sent to a single peer.
1479         /// In contrast to [`Self::BroadcastChannelUpdate`], this is used when the channel is a
1480         /// private channel and we shouldn't be informing all of our peers of channel parameters.
1481         SendChannelUpdate {
1482                 /// The node_id of the node which should receive this message
1483                 node_id: PublicKey,
1484                 /// The channel_update which should be sent.
1485                 msg: msgs::ChannelUpdate,
1486         },
1487         /// Broadcast an error downstream to be handled
1488         HandleError {
1489                 /// The node_id of the node which should receive this message
1490                 node_id: PublicKey,
1491                 /// The action which should be taken.
1492                 action: msgs::ErrorAction
1493         },
1494         /// Query a peer for channels with funding transaction UTXOs in a block range.
1495         SendChannelRangeQuery {
1496                 /// The node_id of this message recipient
1497                 node_id: PublicKey,
1498                 /// The query_channel_range which should be sent.
1499                 msg: msgs::QueryChannelRange,
1500         },
1501         /// Request routing gossip messages from a peer for a list of channels identified by
1502         /// their short_channel_ids.
1503         SendShortIdsQuery {
1504                 /// The node_id of this message recipient
1505                 node_id: PublicKey,
1506                 /// The query_short_channel_ids which should be sent.
1507                 msg: msgs::QueryShortChannelIds,
1508         },
1509         /// Sends a reply to a channel range query. This may be one of several SendReplyChannelRange events
1510         /// emitted during processing of the query.
1511         SendReplyChannelRange {
1512                 /// The node_id of this message recipient
1513                 node_id: PublicKey,
1514                 /// The reply_channel_range which should be sent.
1515                 msg: msgs::ReplyChannelRange,
1516         },
1517         /// Sends a timestamp filter for inbound gossip. This should be sent on each new connection to
1518         /// enable receiving gossip messages from the peer.
1519         SendGossipTimestampFilter {
1520                 /// The node_id of this message recipient
1521                 node_id: PublicKey,
1522                 /// The gossip_timestamp_filter which should be sent.
1523                 msg: msgs::GossipTimestampFilter,
1524         },
1525 }
1526
1527 /// A trait indicating an object may generate message send events
1528 pub trait MessageSendEventsProvider {
1529         /// Gets the list of pending events which were generated by previous actions, clearing the list
1530         /// in the process.
1531         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
1532 }
1533
1534 /// A trait indicating an object may generate onion messages to send
1535 pub trait OnionMessageProvider {
1536         /// Gets the next pending onion message for the peer with the given node id.
1537         fn next_onion_message_for_peer(&self, peer_node_id: PublicKey) -> Option<msgs::OnionMessage>;
1538 }
1539
1540 /// A trait indicating an object may generate events.
1541 ///
1542 /// Events are processed by passing an [`EventHandler`] to [`process_pending_events`].
1543 ///
1544 /// Implementations of this trait may also feature an async version of event handling, as shown with
1545 /// [`ChannelManager::process_pending_events_async`] and
1546 /// [`ChainMonitor::process_pending_events_async`].
1547 ///
1548 /// # Requirements
1549 ///
1550 /// When using this trait, [`process_pending_events`] will call [`handle_event`] for each pending
1551 /// event since the last invocation.
1552 ///
1553 /// In order to ensure no [`Event`]s are lost, implementors of this trait will persist [`Event`]s
1554 /// and replay any unhandled events on startup. An [`Event`] is considered handled when
1555 /// [`process_pending_events`] returns, thus handlers MUST fully handle [`Event`]s and persist any
1556 /// relevant changes to disk *before* returning.
1557 ///
1558 /// Further, because an application may crash between an [`Event`] being handled and the
1559 /// implementor of this trait being re-serialized, [`Event`] handling must be idempotent - in
1560 /// effect, [`Event`]s may be replayed.
1561 ///
1562 /// Note, handlers may call back into the provider and thus deadlocking must be avoided. Be sure to
1563 /// consult the provider's documentation on the implication of processing events and how a handler
1564 /// may safely use the provider (e.g., see [`ChannelManager::process_pending_events`] and
1565 /// [`ChainMonitor::process_pending_events`]).
1566 ///
1567 /// (C-not implementable) As there is likely no reason for a user to implement this trait on their
1568 /// own type(s).
1569 ///
1570 /// [`process_pending_events`]: Self::process_pending_events
1571 /// [`handle_event`]: EventHandler::handle_event
1572 /// [`ChannelManager::process_pending_events`]: crate::ln::channelmanager::ChannelManager#method.process_pending_events
1573 /// [`ChainMonitor::process_pending_events`]: crate::chain::chainmonitor::ChainMonitor#method.process_pending_events
1574 /// [`ChannelManager::process_pending_events_async`]: crate::ln::channelmanager::ChannelManager::process_pending_events_async
1575 /// [`ChainMonitor::process_pending_events_async`]: crate::chain::chainmonitor::ChainMonitor::process_pending_events_async
1576 pub trait EventsProvider {
1577         /// Processes any events generated since the last call using the given event handler.
1578         ///
1579         /// See the trait-level documentation for requirements.
1580         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler;
1581 }
1582
1583 /// A trait implemented for objects handling events from [`EventsProvider`].
1584 ///
1585 /// An async variation also exists for implementations of [`EventsProvider`] that support async
1586 /// event handling. The async event handler should satisfy the generic bounds: `F:
1587 /// core::future::Future, H: Fn(Event) -> F`.
1588 pub trait EventHandler {
1589         /// Handles the given [`Event`].
1590         ///
1591         /// See [`EventsProvider`] for details that must be considered when implementing this method.
1592         fn handle_event(&self, event: Event);
1593 }
1594
1595 impl<F> EventHandler for F where F: Fn(Event) {
1596         fn handle_event(&self, event: Event) {
1597                 self(event)
1598         }
1599 }
1600
1601 impl<T: EventHandler> EventHandler for Arc<T> {
1602         fn handle_event(&self, event: Event) {
1603                 self.deref().handle_event(event)
1604         }
1605 }