diff options
| author | Gavin Andresen <[email protected]> | 2013-01-14 11:41:19 -0800 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-01-14 11:41:19 -0800 |
| commit | 1b722297976f0dc1a1824c87b46dda98dc73d317 (patch) | |
| tree | f9f65a870bbf5d82c07dde8983f1d01e3681e11f /src/net.cpp | |
| parent | Merge pull request #2099 from gavinandresen/blkfile_upgrade (diff) | |
| parent | Remove fClient (diff) | |
| download | discoin-1b722297976f0dc1a1824c87b46dda98dc73d317.tar.xz discoin-1b722297976f0dc1a1824c87b46dda98dc73d317.zip | |
Merge pull request #2161 from sipa/noclient
Remove fClient
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp index b54f8c15f..7867c85b7 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -45,10 +45,9 @@ struct LocalServiceInfo { // // Global state variables // -bool fClient = false; bool fDiscover = true; bool fUseUPnP = false; -uint64 nLocalServices = (fClient ? 0 : NODE_NETWORK); +uint64 nLocalServices = NODE_NETWORK; static CCriticalSection cs_mapLocalHost; static map<CNetAddr, LocalServiceInfo> mapLocalHost; static bool vfReachable[NET_MAX] = {}; |