Merge pull request #482 from UdjinM6/v0.12.0.x_relay_dstx

v0.12.0.x relay dstx to everyone
This commit is contained in:
evan82 2015-08-05 12:46:56 -07:00
commit 05dfffbc63
2 changed files with 2 additions and 2 deletions

View File

@ -619,7 +619,7 @@ void CDarksendPool::CheckFinalTransaction()
} }
CInv inv(MSG_DSTX, txNew.GetHash()); CInv inv(MSG_DSTX, txNew.GetHash());
RelayInv(inv, MIN_POOL_PEER_PROTO_VERSION); RelayInv(inv);
// Tell the clients it was successful // Tell the clients it was successful
RelayCompletedTransaction(sessionID, false, MSG_SUCCESS); RelayCompletedTransaction(sessionID, false, MSG_SUCCESS);

View File

@ -4812,7 +4812,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
if(strCommand == "dstx"){ if(strCommand == "dstx"){
CInv inv(MSG_DSTX, tx.GetHash()); CInv inv(MSG_DSTX, tx.GetHash());
RelayInv(inv, MIN_POOL_PEER_PROTO_VERSION); RelayInv(inv);
} }
int nDoS = 0; int nDoS = 0;