[doc] add hex equivalent for flags
This commit is contained in:
parent
d098ad9a1f
commit
f81b533bb5
1 changed files with 10 additions and 10 deletions
20
main.cpp
20
main.cpp
|
@ -147,16 +147,16 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (filter_whitelist.empty()) {
|
if (filter_whitelist.empty()) {
|
||||||
filter_whitelist.insert(NODE_NETWORK);
|
filter_whitelist.insert(NODE_NETWORK); // x1
|
||||||
filter_whitelist.insert(NODE_NETWORK | NODE_BLOOM);
|
filter_whitelist.insert(NODE_NETWORK | NODE_BLOOM); // x5
|
||||||
filter_whitelist.insert(NODE_NETWORK | NODE_WITNESS);
|
filter_whitelist.insert(NODE_NETWORK | NODE_WITNESS); // x9
|
||||||
filter_whitelist.insert(NODE_NETWORK | NODE_WITNESS | NODE_COMPACT_FILTERS);
|
filter_whitelist.insert(NODE_NETWORK | NODE_WITNESS | NODE_COMPACT_FILTERS); // x49
|
||||||
filter_whitelist.insert(NODE_NETWORK | NODE_WITNESS | NODE_BLOOM);
|
filter_whitelist.insert(NODE_NETWORK | NODE_WITNESS | NODE_BLOOM); // xd
|
||||||
filter_whitelist.insert(NODE_NETWORK_LIMITED);
|
filter_whitelist.insert(NODE_NETWORK_LIMITED); // x400
|
||||||
filter_whitelist.insert(NODE_NETWORK_LIMITED | NODE_BLOOM);
|
filter_whitelist.insert(NODE_NETWORK_LIMITED | NODE_BLOOM); // x404
|
||||||
filter_whitelist.insert(NODE_NETWORK_LIMITED | NODE_WITNESS);
|
filter_whitelist.insert(NODE_NETWORK_LIMITED | NODE_WITNESS); // x408
|
||||||
filter_whitelist.insert(NODE_NETWORK_LIMITED | NODE_WITNESS | NODE_COMPACT_FILTERS);
|
filter_whitelist.insert(NODE_NETWORK_LIMITED | NODE_WITNESS | NODE_COMPACT_FILTERS); // x448
|
||||||
filter_whitelist.insert(NODE_NETWORK_LIMITED | NODE_WITNESS | NODE_BLOOM);
|
filter_whitelist.insert(NODE_NETWORK_LIMITED | NODE_WITNESS | NODE_BLOOM); // x40c
|
||||||
}
|
}
|
||||||
if (host != NULL && ns == NULL) showHelp = true;
|
if (host != NULL && ns == NULL) showHelp = true;
|
||||||
if (showHelp) fprintf(stderr, help, argv[0]);
|
if (showHelp) fprintf(stderr, help, argv[0]);
|
||||||
|
|
Loading…
Reference in a new issue