Skip to content

Commit a81cdf7

Browse files
committed
rename dash-darksend thread to dash-privatesend
1 parent 5b678af commit a81cdf7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/darksend.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2300,15 +2300,15 @@ void CDarksendPool::UpdatedBlockTip(const CBlockIndex *pindex)
23002300
//TODO: Rename/move to core
23012301
void ThreadCheckDarkSendPool()
23022302
{
2303-
if(fLiteMode) return; //disable all Darksend/Masternode related functionality
2303+
if(fLiteMode) return; // disable all Dash specific functionality
23042304

23052305
static bool fOneThread;
23062306
if (fOneThread)
23072307
return;
23082308
fOneThread = true;
23092309

2310-
// Make this thread recognisable as the Darksend/Masternode thread
2311-
RenameThread("dash-darksend");
2310+
// Make this thread recognisable as the PrivateSend thread
2311+
RenameThread("dash-privatesend");
23122312

23132313
unsigned int c = 0;
23142314

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1886,7 +1886,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
18861886
mnpayments.UpdatedBlockTip(chainActive.Tip());
18871887
masternodeSync.UpdatedBlockTip(chainActive.Tip());
18881888

1889-
// ********************************************************* Step 11d: start dash-darksend thread
1889+
// ********************************************************* Step 11d: start dash-privatesend thread
18901890

18911891
threadGroup.create_thread(boost::bind(&ThreadCheckDarkSendPool));
18921892

0 commit comments

Comments
 (0)