From c01ca8bf394b52aee8cdc0a1d0ccec6a7a4d6e65 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Fri, 13 Apr 2012 20:42:05 -0700 Subject: [PATCH] Comment out unused config variables. --- src/Config.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/Config.h b/src/Config.h index 4e2628b9e5..0270c0a694 100644 --- a/src/Config.h +++ b/src/Config.h @@ -3,14 +3,13 @@ class Config { public: - // core software parameters int VERSION; std::string VERSION_STR; // network parameters - std::string NETWORK_ID; - std::string NETWORK_DNS_SEEDS; +// std::string NETWORK_ID; +// std::string NETWORK_DNS_SEEDS; int NETWORK_START_TIME; // The Unix time we start ledger 0 int TRANSACTION_FEE_BASE; int LEDGER_SECONDS; @@ -23,13 +22,13 @@ public: std::string PEER_IP; int PEER_PORT; int NUMBER_CONNECTIONS; - bool NODE_INBOUND; // we accept inbound connections - bool NODE_DATABASE; // we offer historical data services - bool NODE_PUBLIC; // we do not attempt to hide our identity - bool NODE_DUMB; // we are a 'dumb' client - bool NODE_SMART; // we offer services to 'dumb' clients +// bool NODE_INBOUND; // we accept inbound connections +// bool NODE_DATABASE; // we offer historical data services +// bool NODE_PUBLIC; // we do not attempt to hide our identity +// bool NODE_DUMB; // we are a 'dumb' client +// bool NODE_SMART; // we offer services to 'dumb' clients - std::string HANKO_PRIVATE; +// std::string HANKO_PRIVATE; // RPC parameters std::string RPC_IP;