aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorMike Hearn <mike@plan99.net>2014-05-19 22:25:17 +0200
committerMike Hearn <mike@plan99.net>2014-08-11 13:59:47 +0200
commitda2ec100f3681176f60dec6dc675fc64147ade3a (patch)
tree356e017dd8ea38a9e1e2c7301516fccac6ea1cef /src/net.cpp
parent36065cc529bb9be5655fcaaad2746edb7b6f4ddb (diff)
downloadbitcoin-da2ec100f3681176f60dec6dc675fc64147ade3a.tar.xz
Add a getutxos command to the p2p protocol. It allows querying of the UTXO set
given a set of outpoints.
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 62124514c8..e78c7b7fa2 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] = {};