aboutsummaryrefslogtreecommitdiff
path: root/test/lint
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-09-19 16:37:50 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-09-19 16:47:32 -0400
commitfa910e43014d7b6a22f95e2c65b1c4a3e8d5cedc (patch)
tree3e7b4a54e10385aab0ad260eb4d1ec35764e2e1f /test/lint
parentd26278988fbfc71dc558f7b2c60a184e8091450b (diff)
downloadbitcoin-fa910e43014d7b6a22f95e2c65b1c4a3e8d5cedc.tar.xz
init: Remove deprecated args from hidden args
Diffstat (limited to 'test/lint')
-rwxr-xr-xtest/lint/check-doc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lint/check-doc.py b/test/lint/check-doc.py
index 0c4a603167..7b056dab32 100755
--- a/test/lint/check-doc.py
+++ b/test/lint/check-doc.py
@@ -22,7 +22,7 @@ CMD_ROOT_DIR = '`git rev-parse --show-toplevel`/{}'.format(FOLDER_GREP)
CMD_GREP_ARGS = r"git grep --perl-regexp '{}' -- {} ':(exclude){}'".format(REGEX_ARG, CMD_ROOT_DIR, FOLDER_TEST)
CMD_GREP_DOCS = r"git grep --perl-regexp '{}' {}".format(REGEX_DOC, CMD_ROOT_DIR)
# list unsupported, deprecated and duplicate args as they need no documentation
-SET_DOC_OPTIONAL = set(['-rpcssl', '-benchmark', '-h', '-help', '-socks', '-tor', '-debugnet', '-whitelistalwaysrelay', '-promiscuousmempoolflags', '-blockminsize', '-dbcrashratio', '-forcecompactdb', '-usehd'])
+SET_DOC_OPTIONAL = set(['-h', '-help', '-dbcrashratio', '-forcecompactdb', '-usehd'])
def main():