From 178f25bce4f7afd41f6279bcc13b9183ccfd7c2e Mon Sep 17 00:00:00 2001 From: Patrick Lodder Date: Wed, 9 Sep 2015 13:36:35 +0200 Subject: [PATCH] Backport protocol 70004 to 1.8.3 --- src/protocol.h | 1 + src/version.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/protocol.h b/src/protocol.h index 4ea0bcebb..7f8626681 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -66,6 +66,7 @@ enum { NODE_NETWORK = (1 << 0), NODE_BLOOM = (1 << 1), + NODE_GETUTXO = (1 << 2), // not implemented, added for reference }; /** A CService with information about it as peer */ diff --git a/src/version.h b/src/version.h index 04b68999a..ea4971415 100644 --- a/src/version.h +++ b/src/version.h @@ -27,7 +27,7 @@ extern const std::string CLIENT_DATE; // network protocol versioning // -static const int PROTOCOL_VERSION = 70003; +static const int PROTOCOL_VERSION = 70004; // intial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209;