Commit 892a13ea authored by vertoe's avatar vertoe
Browse files

Update protocol versions

parent 4e872687
Showing with 10 additions and 8 deletions
+10 -8
......@@ -8,12 +8,12 @@ DONE:
-----
- Strings in config, path and pid (~/.bitcoin --> ~/.darkcoin)
- Ports for communication and RPC (8333 --> 9999; 8332 --> 9998)
MUST-HAVE:
----------
- Ports for communication and RPC (8333 --> 9999; 8332 --> 9998)
- Version numbers, protocol version, wallet version (compatible with DRK network)
- Adress versions (Public keys, Multisig keys)
- Adjust algorithm (SHA256 --> X11)
......
......@@ -8,7 +8,7 @@
// client versioning and copyright year
//
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
// These need to be macros, as version.cpp's and darkcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 9
#define CLIENT_VERSION_REVISION 3
......
// Copyright (c) 2012 The Bitcoin developers
// Copyright (c) 2012-2014 The Bitcoin developers
// Copyright (c) 2014 vertoe & the Darkcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
......@@ -7,9 +8,9 @@
#include <string>
// Name of client reported in the 'version' message. Report the same name
// for both bitcoind and bitcoin-qt, to make it harder for attackers to
// for both darkcoind and darkcoin-qt, to make it harder for attackers to
// target servers or GUI users specifically.
const std::string CLIENT_NAME("Satoshi");
const std::string CLIENT_NAME("Duffield");
// Client version number
#define CLIENT_VERSION_SUFFIX "-beta"
......
// Copyright (c) 2012 The Bitcoin developers
// Copyright (c) 2012-2014 The Bitcoin developers
// Copyright (c) 2014 vertoe & the Darkcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_VERSION_H
......@@ -26,13 +27,13 @@ extern const std::string CLIENT_DATE;
// network protocol versioning
//
static const int PROTOCOL_VERSION = 70002;
static const int PROTOCOL_VERSION = 70046;
// intial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;
// disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = 209;
static const int MIN_PEER_PROTO_VERSION = 70043;
// nTime field added to CAddress, starting with this version;
// if possible, avoid requesting addresses nodes older than this
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment