Skip to content

Commit 13183a6

Browse files
committed
f fix comment
1 parent 02a03fc commit 13183a6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1320,11 +1320,12 @@ pub(super) struct PeerState<SP: Deref> where SP::Target: SignerProvider {
13201320
/// entry here to note that the channel with the key's ID is blocked on a set of actions.
13211321
actions_blocking_raa_monitor_updates: BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
13221322
/// The latest [`ChannelMonitor::get_latest_update_id`] value for all closed channels as they
1323-
/// exist on-disk/in our [`chain::Watch`]. This *ignores* all pending updates not yet applied
1324-
/// in [`ChannelManager::pending_background_events`].
1323+
/// exist on-disk/in our [`chain::Watch`].
13251324
///
13261325
/// If there are any updates pending in [`Self::in_flight_monitor_updates`] this will contain
1327-
/// the highest `update_id` of all the pending in-flight updates.
1326+
/// the highest `update_id` of all the pending in-flight updates (note that any pending updates
1327+
/// not yet applied sitting in [`ChannelManager::pending_background_events`] will also be
1328+
/// considered as they are also in [`Self::in_flight_monitor_updates`]).
13281329
closed_channel_monitor_update_ids: BTreeMap<ChannelId, u64>,
13291330
/// The peer is currently connected (i.e. we've seen a
13301331
/// [`ChannelMessageHandler::peer_connected`] and no corresponding

0 commit comments

Comments
 (0)