fix: store ready queues on the mixing masternode

This commit is contained in:
UdjinM6 2024-12-05 17:36:17 +03:00
parent 1e55310232
commit 24dcce979b
No known key found for this signature in database
GPG Key ID: 83592BD1400D58D9

View File

@ -520,6 +520,7 @@ void CCoinJoinServer::CheckForCompleteQueue()
"with %d participants\n", dsq.ToString(), vecSessionCollaterals.size()); "with %d participants\n", dsq.ToString(), vecSessionCollaterals.size());
dsq.Sign(*m_mn_activeman); dsq.Sign(*m_mn_activeman);
m_peerman->RelayDSQ(dsq); m_peerman->RelayDSQ(dsq);
WITH_LOCK(cs_vecqueue, vecCoinJoinQueue.push_back(dsq));
} }
} }