diff options
| author | MarcoFalke <[email protected]> | 2018-11-13 18:22:27 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-11-14 12:11:06 -0500 |
| commit | fa520e72f7b5964cea1ade666e71212914556cf3 (patch) | |
| tree | 882c4e881b8397568e5c41139c128446d8994aab | |
| parent | Merge #14411: [wallet] Restore ability to list incoming transactions by label (diff) | |
| download | discoin-fa520e72f7b5964cea1ade666e71212914556cf3.tar.xz discoin-fa520e72f7b5964cea1ade666e71212914556cf3.zip | |
lint: Must use RPCHelpMan to generate the RPC docs
| -rwxr-xr-x | test/lint/lint-rpc-help.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/lint/lint-rpc-help.sh b/test/lint/lint-rpc-help.sh new file mode 100755 index 000000000..602396745 --- /dev/null +++ b/test/lint/lint-rpc-help.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +# +# Copyright (c) 2018 The Bitcoin Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. + +export LC_ALL=C + +EXIT_CODE=0 +non_autogenerated_help=$(grep --perl-regexp --null-data --only-matching 'runtime_error\(\n\s*".*\\n"\n' $(git ls-files -- "*.cpp")) +if [[ ${non_autogenerated_help} != "" ]]; then + echo "Must use RPCHelpMan to generate the help for the following RPC methods:" + echo "${non_autogenerated_help}" + echo + EXIT_CODE=1 +fi +exit ${EXIT_CODE} |