aboutsummaryrefslogtreecommitdiff
path: root/src/protocol.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-12-08 18:40:08 +0100
committerMarcoFalke <falke.marco@gmail.com>2020-12-08 18:36:51 +0100
commitfa40168ab3102b9ad850f967a0e7fa22dbfbd0c6 (patch)
treee54ab607f0556f4eec7d0f810def050aad6a72f0 /src/protocol.h
parent1a9fa4c5ba27f5e32b547a77264ca0d4462bd168 (diff)
downloadbitcoin-fa40168ab3102b9ad850f967a0e7fa22dbfbd0c6.tar.xz
Remove unused bits from service flags enum
Diffstat (limited to 'src/protocol.h')
-rw-r--r--src/protocol.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/protocol.h b/src/protocol.h
index 309fac621c..8af34f58bd 100644
--- a/src/protocol.h
+++ b/src/protocol.h
@@ -273,10 +273,6 @@ enum ServiceFlags : uint64_t {
// NODE_NETWORK means that the node is capable of serving the complete block chain. It is currently
// set by all Bitcoin Core non pruned nodes, and is unset by SPV clients or other light clients.
NODE_NETWORK = (1 << 0),
- // NODE_GETUTXO means the node is capable of responding to the getutxo protocol request.
- // Bitcoin Core does not support this but a patch set called Bitcoin XT does.
- // See BIP 64 for details on how this is implemented.
- NODE_GETUTXO = (1 << 1),
// NODE_BLOOM means the node is capable and willing to handle bloom-filtered connections.
// Bitcoin Core nodes used to support this by default, without advertising this bit,
// but no longer do as of protocol version 70011 (= NO_BLOOM_VERSION)