From 50f084b87238185feaa5f4c243e4d90a79ba4d04 Mon Sep 17 00:00:00 2001 From: losh11 Date: Sat, 2 Mar 2024 03:54:15 +0000 Subject: [PATCH] adjust NODE_MWEB_LIGHT_CLIENT bit to 1 << 23 --- src/protocol.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/protocol.h b/src/protocol.h index a401f6eaf1..178486ca21 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -317,11 +317,11 @@ enum ServiceFlags : uint64_t { // serving the last 288 (2 day) blocks // See BIP159 for details on how this is implemented. NODE_NETWORK_LIMITED = (1 << 10), + // NODE_MWEB_LIGHT_CLIENT indicates that a node can be asked for MWEB light client data. + NODE_MWEB_LIGHT_CLIENT = (1 << 23), // NODE_MWEB indicates that a node can be asked for blocks and transactions including // MWEB data. - NODE_MWEB = (1 << 24), - // NODE_MWEB_LIGHT_CLIENT indicates that a node can be asked for MWEB light client data. - NODE_MWEB_LIGHT_CLIENT = (1 << 25) + NODE_MWEB = (1 << 24) // Bits 25-31 are reserved for temporary experiments. Just pick a bit that // isn't getting used, or one not being used much, and notify the