mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-11 15:48:05 +00:00
Merge pull request #3350
fdbdb7f
cleanup includes in rpcnet.cpp (Philip Kaufmann)b6aafca
some string and indentation updates in init/rpcclient (Philip Kaufmann)
This commit is contained in:
commit
6939a0d50e
@ -199,9 +199,9 @@ std::string HelpMessage(HelpMessageMode hmm)
|
||||
strUsage += " -wallet=<file> " + _("Specify wallet file (within data directory)") + "\n";
|
||||
strUsage += " -dbcache=<n> " + _("Set database cache size in megabytes (default: 25)") + "\n";
|
||||
strUsage += " -timeout=<n> " + _("Specify connection timeout in milliseconds (default: 5000)") + "\n";
|
||||
strUsage += " -proxy=<ip:port> " + _("Connect through socks proxy") + "\n";
|
||||
strUsage += " -socks=<n> " + _("Select the version of socks proxy to use (4-5, default: 5)") + "\n";
|
||||
strUsage += " -onion=<ip:port> " + _("Use proxy to reach tor hidden services (default: same as -proxy)") + "\n";
|
||||
strUsage += " -proxy=<ip:port> " + _("Connect through SOCKS proxy") + "\n";
|
||||
strUsage += " -socks=<n> " + _("Select SOCKS version for -proxy (4 or 5, default: 5)") + "\n";
|
||||
strUsage += " -onion=<ip:port> " + _("Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy)") + "\n";
|
||||
strUsage += " -dns " + _("Allow DNS lookups for -addnode, -seednode and -connect") + "\n";
|
||||
strUsage += " -port=<port> " + _("Listen for connections on <port> (default: 8333 or testnet: 18333)") + "\n";
|
||||
strUsage += " -maxconnections=<n> " + _("Maintain at most <n> connections to peers (default: 125)") + "\n";
|
||||
@ -226,7 +226,7 @@ std::string HelpMessage(HelpMessageMode hmm)
|
||||
strUsage += " -upnp " + _("Use UPnP to map the listening port (default: 0)") + "\n";
|
||||
#endif
|
||||
#endif
|
||||
strUsage += " -paytxfee=<amt> " + _("Fee per KB to add to transactions you send") + "\n";
|
||||
strUsage += " -paytxfee=<amt> " + _("Fee per kB to add to transactions you send") + "\n";
|
||||
strUsage += " -debug=<category> " + _("Output debugging information (default: 0, supplying <category> is optional)") + "\n";
|
||||
strUsage += _("If <category> is not supplied, output all debugging information.") + "\n";
|
||||
strUsage += _("<category> can be:");
|
||||
|
@ -1,8 +1,8 @@
|
||||
// Copyright (c) 2009-2013 The Bitcoin developers
|
||||
// Distributed under the MIT/X11 software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
#include "rpcserver.h"
|
||||
|
||||
#include "rpcserver.h"
|
||||
|
||||
#include "main.h"
|
||||
#include "net.h"
|
||||
@ -11,10 +11,9 @@
|
||||
#include "sync.h"
|
||||
#include "util.h"
|
||||
#ifdef ENABLE_WALLET
|
||||
#include "wallet.h" // for getinfo
|
||||
#include "init.h" // for getinfo
|
||||
#include "wallet.h" // for getinfo
|
||||
#endif
|
||||
#include "main.h" // for getinfo
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user