File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,8 @@ extern const char* GETADDR;
134
134
/* *
135
135
* The mempool message requests the TXIDs of transactions that the receiving
136
136
* node has verified as valid but which have not yet appeared in a block.
137
- * @since protocol version 60002.
137
+ * @since protocol version 60002 as described by BIP35.
138
+ * Only available with service bit NODE_BLOOM, see also BIP111.
138
139
*/
139
140
extern const char * MEMPOOL;
140
141
/* *
@@ -278,8 +279,6 @@ enum ServiceFlags : uint64_t {
278
279
// set by all Bitcoin Core non pruned nodes, and is unset by SPV clients or other light clients.
279
280
NODE_NETWORK = (1 << 0 ),
280
281
// NODE_BLOOM means the node is capable and willing to handle bloom-filtered connections.
281
- // Bitcoin Core nodes used to support this by default, without advertising this bit,
282
- // but no longer do as of protocol version 70011 (= NO_BLOOM_VERSION)
283
282
NODE_BLOOM = (1 << 2 ),
284
283
// NODE_WITNESS indicates that a node can be asked for blocks and transactions including
285
284
// witness data.
Original file line number Diff line number Diff line change @@ -20,9 +20,6 @@ static const int MIN_PEER_PROTO_VERSION = 31800;
20
20
//! BIP 0031, pong message, is enabled for all versions AFTER this one
21
21
static const int BIP0031_VERSION = 60000 ;
22
22
23
- //! "filter*" commands are disabled without NODE_BLOOM after and including this version
24
- static const int NO_BLOOM_VERSION = 70011 ;
25
-
26
23
//! "sendheaders" command and announcing blocks with headers starts with this version
27
24
static const int SENDHEADERS_VERSION = 70012 ;
28
25
You can’t perform that action at this time.
0 commit comments