diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-08-25 10:01:28 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-25 10:37:40 +0200 |
| commit | 11270ebde4b27f9df7e2098b647e406079e5fb1d (patch) | |
| tree | a1074d48dd2d6d6d96af18bd10f0cce362cbc2ad /src/net.cpp | |
| parent | Merge pull request #4683 (diff) | |
| parent | Add a getutxos command to the p2p protocol. It allows querying of the UTXO set (diff) | |
| download | discoin-11270ebde4b27f9df7e2098b647e406079e5fb1d.tar.xz discoin-11270ebde4b27f9df7e2098b647e406079e5fb1d.zip | |
Merge pull request #4351
da2ec10 Add a getutxos command to the p2p protocol. It allows querying of the UTXO set given a set of outpoints. (Mike Hearn)
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 2443740c4..cae9b70da 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -66,7 +66,7 @@ namespace { // bool fDiscover = true; bool fListen = true; -uint64_t nLocalServices = NODE_NETWORK; +uint64_t nLocalServices = NODE_NETWORK | NODE_GETUTXOS; CCriticalSection cs_mapLocalHost; map<CNetAddr, LocalServiceInfo> mapLocalHost; static bool vfReachable[NET_MAX] = {}; |