mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
ConnectNode/FindNide:
- Use FindNode instead of explicit loops - Do not use FindNode where we can grab node right from ConnectNode (slightly less cs_vNodes)
This commit is contained in:
parent
8220292fb1
commit
ff159ad7e7
@ -105,16 +105,12 @@ void CDarkSendRelay::RelayThroughNode(int nRank)
|
||||
|
||||
if(pmn != NULL){
|
||||
//printf("RelayThroughNode %s\n", pmn->addr.ToString().c_str());
|
||||
if(ConnectNode((CAddress)pmn->addr, NULL, true)){
|
||||
CNode* pnode = ConnectNode((CAddress)pmn->addr, NULL, true);
|
||||
if(pnode){
|
||||
//printf("Connected\n");
|
||||
CNode* pNode = FindNode(pmn->addr);
|
||||
if(pNode)
|
||||
{
|
||||
//printf("Found\n");
|
||||
pNode->PushMessage("dsr", (*this));
|
||||
pnode->PushMessage("dsr", (*this));
|
||||
return;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
//printf("RelayThroughNode NULL\n");
|
||||
}
|
||||
|
@ -1527,9 +1527,8 @@ bool CDarksendPool::DoAutomaticDenominating(bool fDryRun, bool ready)
|
||||
}
|
||||
|
||||
// connect to Masternode and submit the queue request
|
||||
if(ConnectNode((CAddress)addr, NULL, true)){
|
||||
CNode* pnode = FindNode(addr);
|
||||
if(pnode)
|
||||
CNode* pnode = ConnectNode((CAddress)addr, NULL, true);
|
||||
if(pnode != NULL)
|
||||
{
|
||||
CMasternode* pmn = mnodeman.Find(dsq.vin);
|
||||
if(pmn == NULL)
|
||||
@ -1546,7 +1545,6 @@ bool CDarksendPool::DoAutomaticDenominating(bool fDryRun, bool ready)
|
||||
strAutoDenomResult = _("Mixing in progress...");
|
||||
dsq.time = 0; //remove node
|
||||
return true;
|
||||
}
|
||||
} else {
|
||||
LogPrintf("DoAutomaticDenominating --- error connecting \n");
|
||||
strAutoDenomResult = _("Error connecting to Masternode.");
|
||||
@ -1577,13 +1575,8 @@ bool CDarksendPool::DoAutomaticDenominating(bool fDryRun, bool ready)
|
||||
|
||||
lastTimeChanged = GetTimeMillis();
|
||||
LogPrintf("DoAutomaticDenominating -- attempt %d connection to Masternode %s\n", i, pmn->addr.ToString());
|
||||
if(ConnectNode((CAddress)pmn->addr, NULL, true)){
|
||||
|
||||
LOCK(cs_vNodes);
|
||||
BOOST_FOREACH(CNode* pnode, vNodes)
|
||||
{
|
||||
if((CNetAddr)pnode->addr != (CNetAddr)pmn->addr) continue;
|
||||
|
||||
CNode* pnode = ConnectNode((CAddress)pmn->addr, NULL, true);
|
||||
if(pnode != NULL){
|
||||
pSubmittedToMasternode = pmn;
|
||||
vecMasternodesUsed.push_back(pmn->vin);
|
||||
|
||||
@ -1597,7 +1590,6 @@ bool CDarksendPool::DoAutomaticDenominating(bool fDryRun, bool ready)
|
||||
LogPrintf("DoAutomaticDenominating --- connected, sending dsa for %d\n", sessionDenom);
|
||||
strAutoDenomResult = _("Mixing in progress...");
|
||||
return true;
|
||||
}
|
||||
} else {
|
||||
i++;
|
||||
continue;
|
||||
@ -2167,6 +2159,7 @@ void CDarksendPool::RelayFinalTransaction(const int sessionID, const CTransactio
|
||||
|
||||
void CDarksendPool::RelayIn(const std::vector<CTxDSIn>& vin, const int64_t& nAmount, const CTransaction& txCollateral, const std::vector<CTxDSOut>& vout)
|
||||
{
|
||||
if(!pSubmittedToMasternode) return;
|
||||
|
||||
std::vector<CTxIn> vin2;
|
||||
std::vector<CTxOut> vout2;
|
||||
@ -2177,11 +2170,8 @@ void CDarksendPool::RelayIn(const std::vector<CTxDSIn>& vin, const int64_t& nAmo
|
||||
BOOST_FOREACH(CTxDSOut out, vout)
|
||||
vout2.push_back(out);
|
||||
|
||||
LOCK(cs_vNodes);
|
||||
BOOST_FOREACH(CNode* pnode, vNodes)
|
||||
{
|
||||
if(!pSubmittedToMasternode) return;
|
||||
if((CNetAddr)pSubmittedToMasternode->addr != (CNetAddr)pnode->addr) continue;
|
||||
CNode* pnode = FindNode(pSubmittedToMasternode->addr);
|
||||
if(pnode != NULL) {
|
||||
LogPrintf("RelayIn - found master, relaying message - %s \n", pnode->addr.ToString());
|
||||
pnode->PushMessage("dsi", vin2, nAmount, txCollateral, vout2);
|
||||
}
|
||||
|
@ -618,12 +618,8 @@ void CMasternodeMan::ProcessMasternodeConnections()
|
||||
|
||||
if(!darkSendPool.pSubmittedToMasternode) return;
|
||||
|
||||
LOCK(cs_vNodes);
|
||||
|
||||
BOOST_FOREACH(CNode* pnode, vNodes)
|
||||
{
|
||||
if(darkSendPool.pSubmittedToMasternode->addr == pnode->addr) continue;
|
||||
|
||||
CNode* pnode = FindNode(darkSendPool.pSubmittedToMasternode->addr);
|
||||
if(pnode != NULL) {
|
||||
if(pnode->fDarkSendMaster){
|
||||
LogPrintf("Closing Masternode connection %s \n", pnode->addr.ToString());
|
||||
pnode->fDisconnect = true;
|
||||
|
Loading…
Reference in New Issue
Block a user