File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -267,6 +267,9 @@ enum ServiceFlags : uint64_t {
267
267
// Indicates that a node can be asked for blocks and transactions including
268
268
// witness data.
269
269
NODE_WITNESS = (1 << 3 ),
270
+ // NODE_XTHIN means the node supports Xtreme Thinblocks
271
+ // If this is turned off then the node will not service nor make xthin requests
272
+ NODE_XTHIN = (1 << 4 ),
270
273
271
274
// Bits 24-31 are reserved for temporary experiments. Just pick a bit that
272
275
// isn't getting used, or one not being used much, and notify the
Original file line number Diff line number Diff line change @@ -930,6 +930,9 @@ QString formatServicesStr(quint64 mask)
930
930
case NODE_WITNESS:
931
931
strList.append (" WITNESS" );
932
932
break ;
933
+ case NODE_XTHIN:
934
+ strList.append (" XTHIN" );
935
+ break ;
933
936
default :
934
937
strList.append (QString (" %1[%2]" ).arg (" UNKNOWN" ).arg (check));
935
938
}
You can’t perform that action at this time.
0 commit comments