diff options
| author | MarcoFalke <[email protected]> | 2018-09-19 16:37:50 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-09-19 16:47:32 -0400 |
| commit | fa910e43014d7b6a22f95e2c65b1c4a3e8d5cedc (patch) | |
| tree | 3e7b4a54e10385aab0ad260eb4d1ec35764e2e1f /test/lint | |
| parent | Merge #13152: [rpc] Add getnodeaddresses RPC command (diff) | |
| download | discoin-fa910e43014d7b6a22f95e2c65b1c4a3e8d5cedc.tar.xz discoin-fa910e43014d7b6a22f95e2c65b1c4a3e8d5cedc.zip | |
init: Remove deprecated args from hidden args
Diffstat (limited to 'test/lint')
| -rwxr-xr-x | test/lint/check-doc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lint/check-doc.py b/test/lint/check-doc.py index 0c4a60316..7b056dab3 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(): |