Skip to content
Merged
Changes from all commits
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
8 changes: 4 additions & 4 deletions lnwire/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ const (
// not advertised to the entire network. A full description of these feature
// bits is provided in the BOLT-09 specification.
var LocalFeatures = map[FeatureBit]string{
DataLossProtectRequired: "data-loss-protect-required",
DataLossProtectOptional: "data-loss-protect-optional",
DataLossProtectRequired: "data-loss-protect",
DataLossProtectOptional: "data-loss-protect",
InitialRoutingSync: "initial-routing-sync",
GossipQueriesRequired: "gossip-queries-required",
GossipQueriesOptional: "gossip-queries-optional",
GossipQueriesRequired: "gossip-queries",
GossipQueriesOptional: "gossip-queries",
}

// GlobalFeatures is a mapping of known global feature bits to a descriptive
Expand Down