aboutsummaryrefslogtreecommitdiff
path: root/test/lint
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-04-01 02:55:59 +0200
committerMarcoFalke <falke.marco@gmail.com>2020-09-24 19:53:52 +0200
commitfaaf9c58e4aa809019d4ca12747dd47411988e37 (patch)
treee0ae4c00f33104e0dba50a18b7505a2fbdbc10de /test/lint
parentfa19bb2cd8c575593583138a84e6bb3444d6196d (diff)
downloadbitcoin-faaf9c58e4aa809019d4ca12747dd47411988e37.tar.xz
remove CRPCCommand constructor that takes rpcfn_type function pointer
Diffstat (limited to 'test/lint')
-rwxr-xr-xtest/lint/lint-rpc-help.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/lint/lint-rpc-help.sh b/test/lint/lint-rpc-help.sh
deleted file mode 100755
index faac5d43e2..0000000000
--- a/test/lint/lint-rpc-help.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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.
-#
-# Check that all RPC help texts are generated by RPCHelpMan.
-
-export LC_ALL=C
-
-EXIT_CODE=0
-
-# Assume that all multiline strings passed into a runtime_error are help texts.
-# This is potentially fragile, but the linter is only temporary and can safely
-# be removed early 2019.
-
-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}