From 03a61ed87c9583ba99728c41bbad9ab3f1bfc5e5 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 19 Jan 2018 17:18:41 -0800 Subject: [PATCH] Remove redundant service flag NODE_GETUTXO meant for Bitcoin XT. This frees up a service bit. Zcash has never used this flag and upstream Bitcoin Core does not support this flag, although it did reserve it for compatibility with Bitcoin XT. --- src/protocol.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/protocol.h b/src/protocol.h index b5e65032a..b0208b01c 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -71,10 +71,6 @@ enum { // set by all Bitcoin Core nodes, and is unset by SPV clients or other peers that just want // network services but don't provide them. 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), // Bits 24-31 are reserved for temporary experiments. Just pick a bit that // isn't getting used, or one not being used much, and notify the