diff options
| author | MarcoFalke <[email protected]> | 2018-09-20 08:09:41 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-09-20 08:09:54 -0400 |
| commit | 9a3a984bb884c1153866b64845db7300121966b3 (patch) | |
| tree | ba563b0ad93e65a750cc680463e4ca74bda0250a /src/bitcoin-cli.cpp | |
| parent | Merge #14276: doc: Add autogen.sh in ARM Cross-compilation (diff) | |
| parent | init: Remove deprecated args from hidden args (diff) | |
| download | discoin-9a3a984bb884c1153866b64845db7300121966b3.tar.xz discoin-9a3a984bb884c1153866b64845db7300121966b3.zip | |
Merge #14272: init: Remove deprecated args from hidden args
fa910e4301 init: Remove deprecated args from hidden args (MarcoFalke)
Pull request description:
The args have been deprecated since 0.17 (maybe longer) and since we reject unknown args, there is no need to add deprecated args to the list of hidden args and then hand-craft an error message if a user provides them.
Tree-SHA512: 3a3191439ab0d7969fb72801d097bd86998524f84b3819380224f746cbe4b0f57beec1ad34744424f6587038035b0ddf418ad13171a8d9c3b97b4f3b7b3222a3
Diffstat (limited to 'src/bitcoin-cli.cpp')
| -rw-r--r-- | src/bitcoin-cli.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index 53c3821ce..09507fd24 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -139,11 +139,6 @@ static int AppInitRPC(int argc, char* argv[]) fprintf(stderr, "Error: %s\n", e.what()); return EXIT_FAILURE; } - if (gArgs.GetBoolArg("-rpcssl", false)) - { - fprintf(stderr, "Error: SSL mode for RPC (-rpcssl) is no longer supported.\n"); - return EXIT_FAILURE; - } return CONTINUE_EXECUTION; } |