pub struct ChannelMonitorUpdate {
pub update_id: u64,
pub channel_id: Option<ChannelId>,
/* private fields */
}Expand description
An update generated by the underlying channel itself which contains some new information the
ChannelMonitor should be made aware of.
Because this represents only a small number of updates to the underlying state, it is generally
much smaller than a full ChannelMonitor. However, for large single commitment transaction
updates (e.g. ones during which there are hundreds of HTLCs pending on the commitment
transaction), a single update may reach upwards of 1 MiB in serialized size.
Fields§
§update_id: u64The sequence number of this update. Updates must be replayed in-order according to this sequence number (and updates may panic if they are not). The update_id values are strictly increasing and increase by one for each new update, with two exceptions specified below.
This sequence number is also used to track up to which points updates which returned
ChannelMonitorUpdateStatus::InProgress have been applied to all copies of a given
ChannelMonitor when ChannelManager::channel_monitor_updated is called.
Note that for ChannelMonitorUpdates generated on LDK versions prior to 0.1 after the
channel was closed, this value may be u64::MAX. In that case, multiple updates may
appear with the same ID, and all should be replayed.
channel_id: Option<ChannelId>The channel ID associated with these updates.
Will be None for ChannelMonitorUpdates constructed on LDK versions prior to 0.0.121 and
always Some otherwise.
Trait Implementations§
Source§impl Clone for ChannelMonitorUpdate
impl Clone for ChannelMonitorUpdate
Source§fn clone(&self) -> ChannelMonitorUpdate
fn clone(&self) -> ChannelMonitorUpdate
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more