diff --git a/src/darksend.cpp b/src/darksend.cpp index c4f9aee4fc..4de39041c1 100644 --- a/src/darksend.cpp +++ b/src/darksend.cpp @@ -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); diff --git a/src/main.cpp b/src/main.cpp index 1adc5be4f8..bd95eacd75 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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;