diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-09-19 16:37:50 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-09-19 16:47:32 -0400 |
commit | fa910e43014d7b6a22f95e2c65b1c4a3e8d5cedc (patch) | |
tree | 3e7b4a54e10385aab0ad260eb4d1ec35764e2e1f /src/bitcoin-cli.cpp | |
parent | d26278988fbfc71dc558f7b2c60a184e8091450b (diff) |
init: Remove deprecated args from hidden args
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 53c3821ce5..09507fd249 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; } |