File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed
test/functional/test_framework Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,6 @@ static std::string serviceFlagToStr(size_t bit)
203
203
switch ((ServiceFlags)service_flag) {
204
204
case NODE_NONE: abort (); // impossible
205
205
case NODE_NETWORK: return " NETWORK" ;
206
- case NODE_GETUTXO: return " GETUTXO" ;
207
206
case NODE_BLOOM: return " BLOOM" ;
208
207
case NODE_WITNESS: return " WITNESS" ;
209
208
case NODE_COMPACT_FILTERS: return " COMPACT_FILTERS" ;
Original file line number Diff line number Diff line change @@ -273,10 +273,6 @@ enum ServiceFlags : uint64_t {
273
273
// NODE_NETWORK means that the node is capable of serving the complete block chain. It is currently
274
274
// set by all Bitcoin Core non pruned nodes, and is unset by SPV clients or other light clients.
275
275
NODE_NETWORK = (1 << 0 ),
276
- // NODE_GETUTXO means the node is capable of responding to the getutxo protocol request.
277
- // Bitcoin Core does not support this but a patch set called Bitcoin XT does.
278
- // See BIP 64 for details on how this is implemented.
279
- NODE_GETUTXO = (1 << 1 ),
280
276
// NODE_BLOOM means the node is capable and willing to handle bloom-filtered connections.
281
277
// Bitcoin Core nodes used to support this by default, without advertising this bit,
282
278
// but no longer do as of protocol version 70011 (= NO_BLOOM_VERSION)
Original file line number Diff line number Diff line change 51
51
MAX_INV_SIZE = 50000 # Maximum number of entries in an 'inv' protocol message
52
52
53
53
NODE_NETWORK = (1 << 0 )
54
- NODE_GETUTXO = (1 << 1 )
55
54
NODE_BLOOM = (1 << 2 )
56
55
NODE_WITNESS = (1 << 3 )
57
56
NODE_COMPACT_FILTERS = (1 << 6 )
You can’t perform that action at this time.
0 commit comments