diff options
| author | MarcoFalke <[email protected]> | 2018-09-26 17:36:23 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-09-26 17:36:28 -0400 |
| commit | ae1cc010b88dd594d2a27b2717cfe14ef04ec852 (patch) | |
| tree | e4cc9a825514f3911bfad651349a2e1e5dfba2eb /test/lint | |
| parent | Merge #14310: [wallet] Ensure wallet is unlocked before signing (diff) | |
| parent | [docs] Add release notes for removing `-usehd` (diff) | |
| download | discoin-ae1cc010b88dd594d2a27b2717cfe14ef04ec852.tar.xz discoin-ae1cc010b88dd594d2a27b2717cfe14ef04ec852.zip | |
Merge #14282: [wallet] Remove -usehd
7ac911afe7 [docs] Add release notes for removing `-usehd` (John Newbery)
25548b2958 [wallet] Remove -usehd (John Newbery)
Pull request description:
`-usehd` is no longer used (except to tell the user that they've set it incorrectly for the wallet that they're loading). Remove it (in the same spirit as #14272)
Tree-SHA512: 5bdcd2bb9bb8504a01343595bcd1bd433d97b730255152c725103c1ac3fa3a9d9e5220a4c29d4c72307cf803e1c09d31080f83603c23dc77263846e17b1826f0
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 7b056dab3..b0d9f8795 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(['-h', '-help', '-dbcrashratio', '-forcecompactdb', '-usehd']) +SET_DOC_OPTIONAL = set(['-h', '-help', '-dbcrashratio', '-forcecompactdb']) def main(): |