removed debugging changes / reverted protocol

This commit is contained in:
Evan Duffield 2014-10-11 23:06:12 -07:00
parent a49aa22729
commit d49b64c35f
3 changed files with 3 additions and 3 deletions

View File

@ -305,7 +305,7 @@ public:
class CDarkSendPool class CDarkSendPool
{ {
public: public:
static const int MIN_PEER_PROTO_VERSION = 70042; static const int MIN_PEER_PROTO_VERSION = 70041;
// clients entries // clients entries
std::vector<CDarkSendEntry> myEntries; std::vector<CDarkSendEntry> myEntries;

View File

@ -3983,7 +3983,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
if (fDebug) LogPrintf("darksend queue is ready - %s\n", addr.ToString().c_str()); if (fDebug) LogPrintf("darksend queue is ready - %s\n", addr.ToString().c_str());
//darkSendPool.DoAutomaticDenominating(false, true); darkSendPool.DoAutomaticDenominating(false, true);
} else { } else {
BOOST_FOREACH(CDarksendQueue q, vecDarksendQueue){ BOOST_FOREACH(CDarksendQueue q, vecDarksendQueue){
if(q.vin == dsq.vin) return true; if(q.vin == dsq.vin) return true;

View File

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