Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/darksend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1509,8 +1509,8 @@ bool CDarksendPool::DoAutomaticDenominating(bool fDryRun)
LogPrint("darksend", " vecMasternodesUsed size %d threshold %d\n", (int)vecMasternodesUsed.size(), nThreshold);
}

//don't use the queues all of the time for mixing
if(nUseQueue > 33){
// don't use the queues all of the time for mixing unless we are a liquidity provider
if(nLiquidityProvider || nUseQueue > 33){

// Look through the queues and see if anything matches
BOOST_FOREACH(CDarksendQueue& dsq, vecDarksendQueue){
Expand Down