From e1ccf7a73738a079d9ca3ac13bf1d8184583dff6 Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Sun, 24 Jan 2016 22:22:13 +0300 Subject: [PATCH] liquidity provider should always use queue --- src/darksend.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/darksend.cpp b/src/darksend.cpp index 63c86522eeb3..4dffd9940ed4 100644 --- a/src/darksend.cpp +++ b/src/darksend.cpp @@ -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){