relay dstx to everyone

This commit is contained in:
UdjinM6 2015-08-05 22:39:43 +03:00
parent 8bd8a897d0
commit 54ac44e60b
2 changed files with 2 additions and 2 deletions

View File

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

View File

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