version bump

This commit is contained in:
Evan Duffield 2014-07-02 02:40:02 -07:00
parent 2ff77bc115
commit 6be81a84ab
3 changed files with 3 additions and 3 deletions

View File

@ -4160,7 +4160,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
return false;
}
std::string strMessage = addr.ToString() + boost::lexical_cast<std::string>(sigTime) + vchPubKey;
std::string strMessage = addr.ToString() + boost::lexical_cast<std::string>(sigTime) + vchPubKey + vchPubKey2;
CScript pubkeyScript2;
pubkeyScript2.SetDestination(pubkey2.GetID());

View File

@ -2581,7 +2581,7 @@ static const int64 POOL_FEE_AMOUNT = 0.025*COIN;
class CDarkSendPool
{
public:
static const int MIN_PEER_PROTO_VERSION = 70018;
static const int MIN_PEER_PROTO_VERSION = 70019;
std::vector<CDarkSendEntry> myEntries;
std::vector<CDarkSendEntry> entries;

View File

@ -25,7 +25,7 @@ extern const std::string CLIENT_DATE;
// network protocol versioning
//
static const int PROTOCOL_VERSION = 70018;
static const int PROTOCOL_VERSION = 70019;
// intial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;