EventHandler for applying NetworkUpdate
[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 chain::keysinterface::SpendableOutputDescriptor;
18 use ln::msgs;
19 use ln::{PaymentPreimage, PaymentHash, PaymentSecret};
20 use routing::network_graph::NetworkUpdate;
21 use util::ser::{Writeable, Writer, MaybeReadable, Readable, VecReadWrapper, VecWriteWrapper};
22
23 use bitcoin::blockdata::script::Script;
24
25 use bitcoin::secp256k1::key::PublicKey;
26
27 use io;
28 use prelude::*;
29 use core::time::Duration;
30 use core::ops::Deref;
31
32 /// Some information provided on receipt of payment depends on whether the payment received is a
33 /// spontaneous payment or a "conventional" lightning payment that's paying an invoice.
34 #[derive(Clone, Debug)]
35 pub enum PaymentPurpose {
36         /// Information for receiving a payment that we generated an invoice for.
37         InvoicePayment {
38                 /// The preimage to the payment_hash, if the payment hash (and secret) were fetched via
39                 /// [`ChannelManager::create_inbound_payment`]. If provided, this can be handed directly to
40                 /// [`ChannelManager::claim_funds`].
41                 ///
42                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
43                 /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
44                 payment_preimage: Option<PaymentPreimage>,
45                 /// The "payment secret". This authenticates the sender to the recipient, preventing a
46                 /// number of deanonymization attacks during the routing process.
47                 /// It is provided here for your reference, however its accuracy is enforced directly by
48                 /// [`ChannelManager`] using the values you previously provided to
49                 /// [`ChannelManager::create_inbound_payment`] or
50                 /// [`ChannelManager::create_inbound_payment_for_hash`].
51                 ///
52                 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
53                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
54                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
55                 payment_secret: PaymentSecret,
56                 /// This is the `user_payment_id` which was provided to
57                 /// [`ChannelManager::create_inbound_payment_for_hash`] or
58                 /// [`ChannelManager::create_inbound_payment`]. It has no meaning inside of LDK and is
59                 /// simply copied here. It may be used to correlate PaymentReceived events with invoice
60                 /// metadata stored elsewhere.
61                 ///
62                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
63                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
64                 user_payment_id: u64,
65         },
66         /// Because this is a spontaneous payment, the payer generated their own preimage rather than us
67         /// (the payee) providing a preimage.
68         SpontaneousPayment(PaymentPreimage),
69 }
70
71 /// An Event which you should probably take some action in response to.
72 ///
73 /// Note that while Writeable and Readable are implemented for Event, you probably shouldn't use
74 /// them directly as they don't round-trip exactly (for example FundingGenerationReady is never
75 /// written as it makes no sense to respond to it after reconnecting to peers).
76 #[derive(Clone, Debug)]
77 pub enum Event {
78         /// Used to indicate that the client should generate a funding transaction with the given
79         /// parameters and then call ChannelManager::funding_transaction_generated.
80         /// Generated in ChannelManager message handling.
81         /// Note that *all inputs* in the funding transaction must spend SegWit outputs or your
82         /// counterparty can steal your funds!
83         FundingGenerationReady {
84                 /// The random channel_id we picked which you'll need to pass into
85                 /// ChannelManager::funding_transaction_generated.
86                 temporary_channel_id: [u8; 32],
87                 /// The value, in satoshis, that the output should have.
88                 channel_value_satoshis: u64,
89                 /// The script which should be used in the transaction output.
90                 output_script: Script,
91                 /// The value passed in to ChannelManager::create_channel
92                 user_channel_id: u64,
93         },
94         /// Indicates we've received money! Just gotta dig out that payment preimage and feed it to
95         /// ChannelManager::claim_funds to get it....
96         /// Note that if the preimage is not known or the amount paid is incorrect, you should call
97         /// ChannelManager::fail_htlc_backwards to free up resources for this HTLC and avoid
98         /// network congestion.
99         /// The amount paid should be considered 'incorrect' when it is less than or more than twice
100         /// the amount expected.
101         /// If you fail to call either ChannelManager::claim_funds or
102         /// ChannelManager::fail_htlc_backwards within the HTLC's timeout, the HTLC will be
103         /// automatically failed.
104         PaymentReceived {
105                 /// The hash for which the preimage should be handed to the ChannelManager.
106                 payment_hash: PaymentHash,
107                 /// The value, in thousandths of a satoshi, that this payment is for. Note that you must
108                 /// compare this to the expected value before accepting the payment (as otherwise you are
109                 /// providing proof-of-payment for less than the value you expected!).
110                 amt: u64,
111                 /// Information for claiming this received payment, based on whether the purpose of the
112                 /// payment is to pay an invoice or to send a spontaneous payment.
113                 purpose: PaymentPurpose,
114         },
115         /// Indicates an outbound payment we made succeeded (ie it made it all the way to its target
116         /// and we got back the payment preimage for it).
117         PaymentSent {
118                 /// The preimage to the hash given to ChannelManager::send_payment.
119                 /// Note that this serves as a payment receipt, if you wish to have such a thing, you must
120                 /// store it somehow!
121                 payment_preimage: PaymentPreimage,
122         },
123         /// Indicates an outbound payment we made failed. Probably some intermediary node dropped
124         /// something. You may wish to retry with a different route.
125         PaymentFailed {
126                 /// The hash which was given to ChannelManager::send_payment.
127                 payment_hash: PaymentHash,
128                 /// Indicates the payment was rejected for some reason by the recipient. This implies that
129                 /// the payment has failed, not just the route in question. If this is not set, you may
130                 /// retry the payment via a different route.
131                 rejected_by_dest: bool,
132                 /// Any failure information conveyed via the Onion return packet by a node along the failed
133                 /// payment route.
134                 ///
135                 /// Should be applied to the [`NetworkGraph`] so that routing decisions can take into
136                 /// account the update. [`NetGraphMsgHandler`] is capable of doing this.
137                 ///
138                 /// [`NetworkGraph`]: crate::routing::network_graph::NetworkGraph
139                 /// [`NetGraphMsgHandler`]: crate::routing::network_graph::NetGraphMsgHandler
140                 network_update: Option<NetworkUpdate>,
141 #[cfg(test)]
142                 error_code: Option<u16>,
143 #[cfg(test)]
144                 error_data: Option<Vec<u8>>,
145         },
146         /// Used to indicate that ChannelManager::process_pending_htlc_forwards should be called at a
147         /// time in the future.
148         PendingHTLCsForwardable {
149                 /// The minimum amount of time that should be waited prior to calling
150                 /// process_pending_htlc_forwards. To increase the effort required to correlate payments,
151                 /// you should wait a random amount of time in roughly the range (now + time_forwardable,
152                 /// now + 5*time_forwardable).
153                 time_forwardable: Duration,
154         },
155         /// Used to indicate that an output which you should know how to spend was confirmed on chain
156         /// and is now spendable.
157         /// Such an output will *not* ever be spent by rust-lightning, and are not at risk of your
158         /// counterparty spending them due to some kind of timeout. Thus, you need to store them
159         /// somewhere and spend them when you create on-chain transactions.
160         SpendableOutputs {
161                 /// The outputs which you should store as spendable by you.
162                 outputs: Vec<SpendableOutputDescriptor>,
163         },
164         /// This event is generated when a payment has been successfully forwarded through us and a
165         /// forwarding fee earned.
166         PaymentForwarded {
167                 /// The fee, in milli-satoshis, which was earned as a result of the payment.
168                 ///
169                 /// Note that if we force-closed the channel over which we forwarded an HTLC while the HTLC
170                 /// was pending, the amount the next hop claimed will have been rounded down to the nearest
171                 /// whole satoshi. Thus, the fee calculated here may be higher than expected as we still
172                 /// claimed the full value in millisatoshis from the source. In this case,
173                 /// `claim_from_onchain_tx` will be set.
174                 ///
175                 /// If the channel which sent us the payment has been force-closed, we will claim the funds
176                 /// via an on-chain transaction. In that case we do not yet know the on-chain transaction
177                 /// fees which we will spend and will instead set this to `None`. It is possible duplicate
178                 /// `PaymentForwarded` events are generated for the same payment iff `fee_earned_msat` is
179                 /// `None`.
180                 fee_earned_msat: Option<u64>,
181                 /// If this is `true`, the forwarded HTLC was claimed by our counterparty via an on-chain
182                 /// transaction.
183                 claim_from_onchain_tx: bool,
184         },
185 }
186
187 impl Writeable for Event {
188         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
189                 match self {
190                         &Event::FundingGenerationReady { .. } => {
191                                 0u8.write(writer)?;
192                                 // We never write out FundingGenerationReady events as, upon disconnection, peers
193                                 // drop any channels which have not yet exchanged funding_signed.
194                         },
195                         &Event::PaymentReceived { ref payment_hash, ref amt, ref purpose } => {
196                                 1u8.write(writer)?;
197                                 let mut payment_secret = None;
198                                 let mut user_payment_id = None;
199                                 let payment_preimage;
200                                 match &purpose {
201                                         PaymentPurpose::InvoicePayment { payment_preimage: preimage, payment_secret: secret, user_payment_id: id } => {
202                                                 payment_secret = Some(secret);
203                                                 payment_preimage = *preimage;
204                                                 user_payment_id = Some(id);
205                                         },
206                                         PaymentPurpose::SpontaneousPayment(preimage) => {
207                                                 payment_preimage = Some(*preimage);
208                                         }
209                                 }
210                                 write_tlv_fields!(writer, {
211                                         (0, payment_hash, required),
212                                         (2, payment_secret, option),
213                                         (4, amt, required),
214                                         (6, user_payment_id, option),
215                                         (8, payment_preimage, option),
216                                 });
217                         },
218                         &Event::PaymentSent { ref payment_preimage } => {
219                                 2u8.write(writer)?;
220                                 write_tlv_fields!(writer, {
221                                         (0, payment_preimage, required),
222                                 });
223                         },
224                         &Event::PaymentFailed { ref payment_hash, ref rejected_by_dest, ref network_update,
225                                 #[cfg(test)]
226                                 ref error_code,
227                                 #[cfg(test)]
228                                 ref error_data,
229                         } => {
230                                 3u8.write(writer)?;
231                                 #[cfg(test)]
232                                 error_code.write(writer)?;
233                                 #[cfg(test)]
234                                 error_data.write(writer)?;
235                                 write_tlv_fields!(writer, {
236                                         (0, payment_hash, required),
237                                         (1, network_update, option),
238                                         (2, rejected_by_dest, required),
239                                 });
240                         },
241                         &Event::PendingHTLCsForwardable { time_forwardable: _ } => {
242                                 4u8.write(writer)?;
243                                 write_tlv_fields!(writer, {});
244                                 // We don't write the time_fordwardable out at all, as we presume when the user
245                                 // deserializes us at least that much time has elapsed.
246                         },
247                         &Event::SpendableOutputs { ref outputs } => {
248                                 5u8.write(writer)?;
249                                 write_tlv_fields!(writer, {
250                                         (0, VecWriteWrapper(outputs), required),
251                                 });
252                         },
253                         &Event::PaymentForwarded { fee_earned_msat, claim_from_onchain_tx } => {
254                                 7u8.write(writer)?;
255                                 write_tlv_fields!(writer, {
256                                         (0, fee_earned_msat, option),
257                                         (2, claim_from_onchain_tx, required),
258                                 });
259                         },
260                 }
261                 Ok(())
262         }
263 }
264 impl MaybeReadable for Event {
265         fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, msgs::DecodeError> {
266                 match Readable::read(reader)? {
267                         0u8 => Ok(None),
268                         1u8 => {
269                                 let f = || {
270                                         let mut payment_hash = PaymentHash([0; 32]);
271                                         let mut payment_preimage = None;
272                                         let mut payment_secret = None;
273                                         let mut amt = 0;
274                                         let mut user_payment_id = None;
275                                         read_tlv_fields!(reader, {
276                                                 (0, payment_hash, required),
277                                                 (2, payment_secret, option),
278                                                 (4, amt, required),
279                                                 (6, user_payment_id, option),
280                                                 (8, payment_preimage, option),
281                                         });
282                                         let purpose = match payment_secret {
283                                                 Some(secret) => PaymentPurpose::InvoicePayment {
284                                                         payment_preimage,
285                                                         payment_secret: secret,
286                                                         user_payment_id: if let Some(id) = user_payment_id {
287                                                                 id
288                                                         } else { return Err(msgs::DecodeError::InvalidValue) }
289                                                 },
290                                                 None if payment_preimage.is_some() => PaymentPurpose::SpontaneousPayment(payment_preimage.unwrap()),
291                                                 None => return Err(msgs::DecodeError::InvalidValue),
292                                         };
293                                         Ok(Some(Event::PaymentReceived {
294                                                 payment_hash,
295                                                 amt,
296                                                 purpose,
297                                         }))
298                                 };
299                                 f()
300                         },
301                         2u8 => {
302                                 let f = || {
303                                         let mut payment_preimage = PaymentPreimage([0; 32]);
304                                         read_tlv_fields!(reader, {
305                                                 (0, payment_preimage, required),
306                                         });
307                                         Ok(Some(Event::PaymentSent {
308                                                 payment_preimage,
309                                         }))
310                                 };
311                                 f()
312                         },
313                         3u8 => {
314                                 let f = || {
315                                         #[cfg(test)]
316                                         let error_code = Readable::read(reader)?;
317                                         #[cfg(test)]
318                                         let error_data = Readable::read(reader)?;
319                                         let mut payment_hash = PaymentHash([0; 32]);
320                                         let mut rejected_by_dest = false;
321                                         let mut network_update = None;
322                                         read_tlv_fields!(reader, {
323                                                 (0, payment_hash, required),
324                                                 (1, network_update, ignorable),
325                                                 (2, rejected_by_dest, required),
326                                         });
327                                         Ok(Some(Event::PaymentFailed {
328                                                 payment_hash,
329                                                 rejected_by_dest,
330                                                 network_update,
331                                                 #[cfg(test)]
332                                                 error_code,
333                                                 #[cfg(test)]
334                                                 error_data,
335                                         }))
336                                 };
337                                 f()
338                         },
339                         4u8 => {
340                                 let f = || {
341                                         read_tlv_fields!(reader, {});
342                                         Ok(Some(Event::PendingHTLCsForwardable {
343                                                 time_forwardable: Duration::from_secs(0)
344                                         }))
345                                 };
346                                 f()
347                         },
348                         5u8 => {
349                                 let f = || {
350                                         let mut outputs = VecReadWrapper(Vec::new());
351                                         read_tlv_fields!(reader, {
352                                                 (0, outputs, required),
353                                         });
354                                         Ok(Some(Event::SpendableOutputs { outputs: outputs.0 }))
355                                 };
356                                 f()
357                         },
358                         7u8 => {
359                                 let f = || {
360                                         let mut fee_earned_msat = None;
361                                         let mut claim_from_onchain_tx = false;
362                                         read_tlv_fields!(reader, {
363                                                 (0, fee_earned_msat, option),
364                                                 (2, claim_from_onchain_tx, required),
365                                         });
366                                         Ok(Some(Event::PaymentForwarded { fee_earned_msat, claim_from_onchain_tx }))
367                                 };
368                                 f()
369                         },
370                         // Versions prior to 0.0.100 did not ignore odd types, instead returning InvalidValue.
371                         x if x % 2 == 1 => Ok(None),
372                         _ => Err(msgs::DecodeError::InvalidValue)
373                 }
374         }
375 }
376
377 /// An event generated by ChannelManager which indicates a message should be sent to a peer (or
378 /// broadcast to most peers).
379 /// These events are handled by PeerManager::process_events if you are using a PeerManager.
380 #[derive(Clone, Debug)]
381 pub enum MessageSendEvent {
382         /// Used to indicate that we've accepted a channel open and should send the accept_channel
383         /// message provided to the given peer.
384         SendAcceptChannel {
385                 /// The node_id of the node which should receive this message
386                 node_id: PublicKey,
387                 /// The message which should be sent.
388                 msg: msgs::AcceptChannel,
389         },
390         /// Used to indicate that we've initiated a channel open and should send the open_channel
391         /// message provided to the given peer.
392         SendOpenChannel {
393                 /// The node_id of the node which should receive this message
394                 node_id: PublicKey,
395                 /// The message which should be sent.
396                 msg: msgs::OpenChannel,
397         },
398         /// Used to indicate that a funding_created message should be sent to the peer with the given node_id.
399         SendFundingCreated {
400                 /// The node_id of the node which should receive this message
401                 node_id: PublicKey,
402                 /// The message which should be sent.
403                 msg: msgs::FundingCreated,
404         },
405         /// Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
406         SendFundingSigned {
407                 /// The node_id of the node which should receive this message
408                 node_id: PublicKey,
409                 /// The message which should be sent.
410                 msg: msgs::FundingSigned,
411         },
412         /// Used to indicate that a funding_locked message should be sent to the peer with the given node_id.
413         SendFundingLocked {
414                 /// The node_id of the node which should receive these message(s)
415                 node_id: PublicKey,
416                 /// The funding_locked message which should be sent.
417                 msg: msgs::FundingLocked,
418         },
419         /// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
420         SendAnnouncementSignatures {
421                 /// The node_id of the node which should receive these message(s)
422                 node_id: PublicKey,
423                 /// The announcement_signatures message which should be sent.
424                 msg: msgs::AnnouncementSignatures,
425         },
426         /// Used to indicate that a series of HTLC update messages, as well as a commitment_signed
427         /// message should be sent to the peer with the given node_id.
428         UpdateHTLCs {
429                 /// The node_id of the node which should receive these message(s)
430                 node_id: PublicKey,
431                 /// The update messages which should be sent. ALL messages in the struct should be sent!
432                 updates: msgs::CommitmentUpdate,
433         },
434         /// Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
435         SendRevokeAndACK {
436                 /// The node_id of the node which should receive this message
437                 node_id: PublicKey,
438                 /// The message which should be sent.
439                 msg: msgs::RevokeAndACK,
440         },
441         /// Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
442         SendClosingSigned {
443                 /// The node_id of the node which should receive this message
444                 node_id: PublicKey,
445                 /// The message which should be sent.
446                 msg: msgs::ClosingSigned,
447         },
448         /// Used to indicate that a shutdown message should be sent to the peer with the given node_id.
449         SendShutdown {
450                 /// The node_id of the node which should receive this message
451                 node_id: PublicKey,
452                 /// The message which should be sent.
453                 msg: msgs::Shutdown,
454         },
455         /// Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
456         SendChannelReestablish {
457                 /// The node_id of the node which should receive this message
458                 node_id: PublicKey,
459                 /// The message which should be sent.
460                 msg: msgs::ChannelReestablish,
461         },
462         /// Used to indicate that a channel_announcement and channel_update should be broadcast to all
463         /// peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
464         ///
465         /// Note that after doing so, you very likely (unless you did so very recently) want to call
466         /// ChannelManager::broadcast_node_announcement to trigger a BroadcastNodeAnnouncement event.
467         /// This ensures that any nodes which see our channel_announcement also have a relevant
468         /// node_announcement, including relevant feature flags which may be important for routing
469         /// through or to us.
470         BroadcastChannelAnnouncement {
471                 /// The channel_announcement which should be sent.
472                 msg: msgs::ChannelAnnouncement,
473                 /// The followup channel_update which should be sent.
474                 update_msg: msgs::ChannelUpdate,
475         },
476         /// Used to indicate that a node_announcement should be broadcast to all peers.
477         BroadcastNodeAnnouncement {
478                 /// The node_announcement which should be sent.
479                 msg: msgs::NodeAnnouncement,
480         },
481         /// Used to indicate that a channel_update should be broadcast to all peers.
482         BroadcastChannelUpdate {
483                 /// The channel_update which should be sent.
484                 msg: msgs::ChannelUpdate,
485         },
486         /// Used to indicate that a channel_update should be sent to a single peer.
487         /// In contrast to [`Self::BroadcastChannelUpdate`], this is used when the channel is a
488         /// private channel and we shouldn't be informing all of our peers of channel parameters.
489         SendChannelUpdate {
490                 /// The node_id of the node which should receive this message
491                 node_id: PublicKey,
492                 /// The channel_update which should be sent.
493                 msg: msgs::ChannelUpdate,
494         },
495         /// Broadcast an error downstream to be handled
496         HandleError {
497                 /// The node_id of the node which should receive this message
498                 node_id: PublicKey,
499                 /// The action which should be taken.
500                 action: msgs::ErrorAction
501         },
502         /// Query a peer for channels with funding transaction UTXOs in a block range.
503         SendChannelRangeQuery {
504                 /// The node_id of this message recipient
505                 node_id: PublicKey,
506                 /// The query_channel_range which should be sent.
507                 msg: msgs::QueryChannelRange,
508         },
509         /// Request routing gossip messages from a peer for a list of channels identified by
510         /// their short_channel_ids.
511         SendShortIdsQuery {
512                 /// The node_id of this message recipient
513                 node_id: PublicKey,
514                 /// The query_short_channel_ids which should be sent.
515                 msg: msgs::QueryShortChannelIds,
516         },
517         /// Sends a reply to a channel range query. This may be one of several SendReplyChannelRange events
518         /// emitted during processing of the query.
519         SendReplyChannelRange {
520                 /// The node_id of this message recipient
521                 node_id: PublicKey,
522                 /// The reply_channel_range which should be sent.
523                 msg: msgs::ReplyChannelRange,
524         }
525 }
526
527 /// A trait indicating an object may generate message send events
528 pub trait MessageSendEventsProvider {
529         /// Gets the list of pending events which were generated by previous actions, clearing the list
530         /// in the process.
531         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
532 }
533
534 /// A trait indicating an object may generate events.
535 ///
536 /// Events are processed by passing an [`EventHandler`] to [`process_pending_events`].
537 ///
538 /// # Requirements
539 ///
540 /// See [`process_pending_events`] for requirements around event processing.
541 ///
542 /// When using this trait, [`process_pending_events`] will call [`handle_event`] for each pending
543 /// event since the last invocation. The handler must either act upon the event immediately
544 /// or preserve it for later handling.
545 ///
546 /// Note, handlers may call back into the provider and thus deadlocking must be avoided. Be sure to
547 /// consult the provider's documentation on the implication of processing events and how a handler
548 /// may safely use the provider (e.g., see [`ChannelManager::process_pending_events`] and
549 /// [`ChainMonitor::process_pending_events`]).
550 ///
551 /// (C-not implementable) As there is likely no reason for a user to implement this trait on their
552 /// own type(s).
553 ///
554 /// [`process_pending_events`]: Self::process_pending_events
555 /// [`handle_event`]: EventHandler::handle_event
556 /// [`ChannelManager::process_pending_events`]: crate::ln::channelmanager::ChannelManager#method.process_pending_events
557 /// [`ChainMonitor::process_pending_events`]: crate::chain::chainmonitor::ChainMonitor#method.process_pending_events
558 pub trait EventsProvider {
559         /// Processes any events generated since the last call using the given event handler.
560         ///
561         /// Subsequent calls must only process new events. However, handlers must be capable of handling
562         /// duplicate events across process restarts. This may occur if the provider was recovered from
563         /// an old state (i.e., it hadn't been successfully persisted after processing pending events).
564         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler;
565 }
566
567 /// A trait implemented for objects handling events from [`EventsProvider`].
568 pub trait EventHandler {
569         /// Handles the given [`Event`].
570         ///
571         /// See [`EventsProvider`] for details that must be considered when implementing this method.
572         fn handle_event(&self, event: &Event);
573 }
574
575 impl<F> EventHandler for F where F: Fn(&Event) {
576         fn handle_event(&self, event: &Event) {
577                 self(event)
578         }
579 }