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/httpserver.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/httpserver.cpp')
| -rw-r--r-- | src/httpserver.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp index 326f7f6b6..9aaa1024d 100644 --- a/src/httpserver.cpp +++ b/src/httpserver.cpp @@ -352,13 +352,6 @@ bool InitHTTPServer() if (!InitHTTPAllowList()) return false; - if (gArgs.GetBoolArg("-rpcssl", false)) { - uiInterface.ThreadSafeMessageBox( - "SSL mode for RPC (-rpcssl) is no longer supported.", - "", CClientUIInterface::MSG_ERROR); - return false; - } - // Redirect libevent's logging to our own log event_set_log_callback(&libevent_log_cb); // Update libevent's log handling. Returns false if our version of |