Skip to content

Commit

Permalink
Replace "logical OR" with "bitwise OR" (#991)
Browse files Browse the repository at this point in the history
This makes more sense given the context of combining bitmaps.
  • Loading branch information
morehouse authored Sep 18, 2024
1 parent fd83d7c commit 0463bdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 01-messaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ The sending node:

The receiving node:
- MUST wait to receive `init` before sending any other messages.
- MUST combine (logical OR) the two feature bitmaps into one logical `features` map.
- MUST combine (bitwise OR) the two feature bitmaps into one logical `features` map.
- MUST respond to known feature bits as specified in [BOLT #9](09-features.md).
- upon receiving unknown _odd_ feature bits that are non-zero:
- MUST ignore the bit.
Expand Down

0 comments on commit 0463bdb

Please sign in to comment.