aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2015-10-18 14:22:43 +0100
committerRoss Nicoll <[email protected]>2015-10-18 14:22:43 +0100
commite9da230e26ef04c16d723bada7fe9307fd04e8b9 (patch)
tree50a821bc89279b463455fc2ec4accdf1e3b755ac /src
parentMerge pull request #1302 from patricklodder/1.8.3-low-s (diff)
parentBackport protocol 70004 to 1.8.3 (diff)
downloaddiscoin-e9da230e26ef04c16d723bada7fe9307fd04e8b9.tar.xz
discoin-e9da230e26ef04c16d723bada7fe9307fd04e8b9.zip
Merge pull request #1280 from patricklodder/1.8.3-backport-protocol-change
Backport protocol 70004 to 1.8.3
Diffstat (limited to 'src')
-rw-r--r--src/protocol.h1
-rw-r--r--src/version.h2
2 files changed, 2 insertions, 1 deletions
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;