From 0463bdb51b2fc2cc61540a867f27fe06005efcdd Mon Sep 17 00:00:00 2001 From: Matt Morehouse Date: Wed, 18 Sep 2024 09:08:53 +0000 Subject: [PATCH] Replace "logical OR" with "bitwise OR" (#991) This makes more sense given the context of combining bitmaps. --- 01-messaging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-messaging.md b/01-messaging.md index 066d7b4..2ff58d4 100644 --- a/01-messaging.md +++ b/01-messaging.md @@ -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.