From 54ac44e60b95f58da3cf226f389b6b10e8f3f44e Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Wed, 5 Aug 2015 22:39:43 +0300 Subject: [PATCH] relay dstx to everyone --- src/darksend.cpp | 2 +- src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/darksend.cpp b/src/darksend.cpp index c4f9aee4f..4de39041c 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 1adc5be4f..bd95eacd7 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;