diff options
| author | MarcoFalke <[email protected]> | 2015-11-09 19:16:38 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2015-11-28 19:01:11 +0100 |
| commit | faf93f37fe47fe326fcc4955302a66f24eb13b65 (patch) | |
| tree | a1f2ed7942c30233341f58f85cff6eaf2e14cb5e /src/netbase.cpp | |
| parent | Bugfix: Omit wallet-related options from -help when wallet is not supported (diff) | |
| download | discoin-faf93f37fe47fe326fcc4955302a66f24eb13b65.tar.xz discoin-faf93f37fe47fe326fcc4955302a66f24eb13b65.zip | |
[trivial] Reuse translation and cleanup DEFAULT_* values
* DEFAULT_DISABLE_SAFEMODE = false
* Use DEFAULT_* constants for extern bools
Diffstat (limited to 'src/netbase.cpp')
| -rw-r--r-- | src/netbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbase.cpp b/src/netbase.cpp index fa6598c1e..05214cb02 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -40,7 +40,7 @@ static proxyType proxyInfo[NET_MAX]; static proxyType nameProxy; static CCriticalSection cs_proxyInfos; int nConnectTimeout = DEFAULT_CONNECT_TIMEOUT; -bool fNameLookup = true; +bool fNameLookup = DEFAULT_NAME_LOOKUP; static const unsigned char pchIPv4[12] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff }; |