1
0
mirror of https://github.com/lightning/bolts.git synced 2024-11-19 01:50:03 +01:00

Replace "logical OR" with "bitwise OR" (#991)

This makes more sense given the context of combining bitmaps.
This commit is contained in:
Matt Morehouse 2024-09-18 09:08:53 +00:00 committed by GitHub
parent fd83d7cee0
commit 0463bdb51b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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.