From: CryptoManiac Date: Sat, 27 Nov 2021 13:25:01 +0000 (+0300) Subject: Remove rpcssl settings from help X-Git-Tag: nvc-v0.5.9~122 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=9c7559fd5d64b33e38314bc93756f90d3b696802 Remove rpcssl settings from help --- diff --git a/src/init.cpp b/src/init.cpp index 665c14e..6c454fe 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -308,13 +308,7 @@ std::string HelpMessage() "\n" + _("Block creation options:") + "\n" + " -blockminsize= " + _("Set minimum block size in bytes (default: 0)") + "\n" + " -blockmaxsize= " + _("Set maximum block size in bytes (default: 250000)") + "\n" + - " -blockprioritysize= " + _("Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)") + "\n" + - - "\n" + _("SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n" + - " -rpcssl " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n" + - " -rpcsslcertificatechainfile= " + _("Server certificate file (default: server.cert)") + "\n" + - " -rpcsslprivatekeyfile= " + _("Server private key (default: server.pem)") + "\n" + - " -rpcsslciphers= " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)") + "\n"; + " -blockprioritysize= " + _("Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)") + "\n"; return strUsage; }