Comment out unused config variables.

This commit is contained in:
Arthur Britto
2012-04-13 20:42:05 -07:00
parent 4d7f86c43e
commit c01ca8bf39

View File

@@ -3,14 +3,13 @@
class Config class Config
{ {
public: public:
// core software parameters // core software parameters
int VERSION; int VERSION;
std::string VERSION_STR; std::string VERSION_STR;
// network parameters // network parameters
std::string NETWORK_ID; // std::string NETWORK_ID;
std::string NETWORK_DNS_SEEDS; // std::string NETWORK_DNS_SEEDS;
int NETWORK_START_TIME; // The Unix time we start ledger 0 int NETWORK_START_TIME; // The Unix time we start ledger 0
int TRANSACTION_FEE_BASE; int TRANSACTION_FEE_BASE;
int LEDGER_SECONDS; int LEDGER_SECONDS;
@@ -23,13 +22,13 @@ public:
std::string PEER_IP; std::string PEER_IP;
int PEER_PORT; int PEER_PORT;
int NUMBER_CONNECTIONS; int NUMBER_CONNECTIONS;
bool NODE_INBOUND; // we accept inbound connections // bool NODE_INBOUND; // we accept inbound connections
bool NODE_DATABASE; // we offer historical data services // bool NODE_DATABASE; // we offer historical data services
bool NODE_PUBLIC; // we do not attempt to hide our identity // bool NODE_PUBLIC; // we do not attempt to hide our identity
bool NODE_DUMB; // we are a 'dumb' client // bool NODE_DUMB; // we are a 'dumb' client
bool NODE_SMART; // we offer services to 'dumb' clients // bool NODE_SMART; // we offer services to 'dumb' clients
std::string HANKO_PRIVATE; // std::string HANKO_PRIVATE;
// RPC parameters // RPC parameters
std::string RPC_IP; std::string RPC_IP;