Merge pull request #1280 from patricklodder/1.8.3-backport-protocol-change

Backport protocol 70004 to 1.8.3
This commit is contained in:
Ross Nicoll 2015-10-18 14:22:43 +01:00
commit e9da230e26
2 changed files with 2 additions and 1 deletions

View file

@ -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 */

View file

@ -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;