Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add ChannelManager::PeerState::latest_features docs
  • Loading branch information
ViktorT-11 committed Jan 6, 2023
commit 48f9c72eb6d27735c073eb27ea770b853fc72a73
1 change: 1 addition & 0 deletions lightning/src/ln/channelmanager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,7 @@ pub(crate) enum MonitorUpdateCompletionAction {
/// State we hold per-peer. In the future we should put channels in here, but for now we only hold
/// the latest Init features we heard from the peer.
struct PeerState {
/// The latest `InitFeatures` we heard from the peer.
latest_features: InitFeatures,
}

Expand Down