adjust NODE_MWEB_LIGHT_CLIENT bit to 1 << 23

pull/944/head
losh11 2 months ago
parent 53dbe584fd
commit 50f084b872
No known key found for this signature in database
GPG Key ID: 3B2A6315CD51A673

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

Loading…
Cancel
Save