mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
parent
5d42a372cf
commit
c872091296
@ -355,7 +355,7 @@ void CDarksendPool::ProcessMessageDarksend(CNode* pfrom, std::string& strCommand
|
||||
//check to see if input is spent already? (and probably not confirmed)
|
||||
SignFinalTransaction(txNew, pfrom);
|
||||
|
||||
} else if (strCommand == NetMsgType::DSSTATUSUPDATE) { //Darksend Complete
|
||||
} else if (strCommand == NetMsgType::DSCOMPLETE) { //Darksend Complete
|
||||
|
||||
if (pfrom->nVersion < MIN_POOL_PEER_PROTO_VERSION) {
|
||||
return;
|
||||
@ -2198,7 +2198,7 @@ void CDarksendPool::RelayCompletedTransaction(const int sessionID, const bool er
|
||||
{
|
||||
LOCK(cs_vNodes);
|
||||
BOOST_FOREACH(CNode* pnode, vNodes)
|
||||
pnode->PushMessage(NetMsgType::DSSTATUSUPDATE, sessionID, error, errorID);
|
||||
pnode->PushMessage(NetMsgType::DSCOMPLETE, sessionID, error, errorID);
|
||||
}
|
||||
|
||||
void CDarksendPool::UpdatedBlockTip(const CBlockIndex *pindex)
|
||||
|
@ -240,7 +240,7 @@ extern const char *DSACCEPT;
|
||||
extern const char *DSVIN;
|
||||
extern const char *DSFINALTX;
|
||||
extern const char *DSSIGNFINALTX;
|
||||
extern const char *DSDSCOMPLETE;
|
||||
extern const char *DSCOMPLETE;
|
||||
extern const char *DSSTATUSUPDATE;
|
||||
extern const char *DSTX;
|
||||
extern const char *DSQUEUE;
|
||||
|
Loading…
Reference in New Issue
Block a user