Skip to content

Commit 9de9949

Browse files
strophyUdjinM6
authored andcommitted
Compliance changes to terminology (#3211)
Replace inaccurate user-facing descriptions of PS as anonymous to mixed or private, since Dash is a transparent blockchain.
1 parent d475f17 commit 9de9949

File tree

15 files changed

+34
-34
lines changed

15 files changed

+34
-34
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ https://www.dash.org
99
What is Dash?
1010
-------------
1111

12-
Dash is an experimental digital currency that enables anonymous, instant
12+
Dash is an experimental digital currency that enables instant, private
1313
payments to anyone, anywhere in the world. Dash uses peer-to-peer technology
1414
to operate with no central authority: managing transactions and issuing money
1515
are carried out collectively by the network. Dash Core is the name of the open

contrib/debian/control

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Package: dashd
3434
Architecture: any
3535
Depends: ${shlibs:Depends}, ${misc:Depends}
3636
Description: peer-to-peer network based digital currency - daemon
37-
Dash is an experimental new digital currency that enables anonymous, instant
37+
Dash is an experimental new digital currency that enables instant, private
3838
payments to anyone, anywhere in the world. Dash uses peer-to-peer
3939
technology to operate with no central authority: managing transactions
4040
and issuing money are carried out collectively by the network. Dash Core
@@ -47,7 +47,7 @@ Package: dash-qt
4747
Architecture: any
4848
Depends: ${shlibs:Depends}, ${misc:Depends}
4949
Description: peer-to-peer network based digital currency - Qt GUI
50-
Dash is an experimental new digital currency that enables anonymous, instant
50+
Dash is an experimental new digital currency that enables instant, private
5151
payments to anyone, anywhere in the world. Dash uses peer-to-peer
5252
technology to operate with no central authority: managing transactions
5353
and issuing money are carried out collectively by the network. Dash Core
@@ -59,7 +59,7 @@ Package: dash-tx
5959
Architecture: any
6060
Depends: ${shlibs:Depends}, ${misc:Depends}
6161
Description: peer-to-peer digital currency - standalone transaction tool
62-
Dash is an experimental new digital currency that enables anonymous, instant
62+
Dash is an experimental new digital currency that enables instant, private
6363
payments to anyone, anywhere in the world. Dash uses peer-to-peer
6464
technology to operate with no central authority: managing transactions
6565
and issuing money are carried out collectively by the network. Dash Core

doc/man/dash-qt.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ Use N separate masternodes for each denominated input to mix funds
550550
.HP
551551
\fB\-privatesendamount=\fR<n>
552552
.IP
553-
Keep N DASH anonymized (2\-21000000, default: 1000)
553+
Keep N DASH mixed (2\-21000000, default: 1000)
554554
.HP
555555
\fB\-privatesenddenoms=\fR<n>
556556
.IP

doc/man/dashd.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ Use N separate masternodes for each denominated input to mix funds
551551
.HP
552552
\fB\-privatesendamount=\fR<n>
553553
.IP
554-
Keep N DASH anonymized (2\-21000000, default: 1000)
554+
Keep N DASH mixed (2\-21000000, default: 1000)
555555
.HP
556556
\fB\-privatesenddenoms=\fR<n>
557557
.IP

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ std::string HelpMessage(HelpMessageMode mode)
609609
strUsage += HelpMessageOpt("-privatesendmultisession", strprintf(_("Enable multiple PrivateSend mixing sessions per block, experimental (0-1, default: %u)"), DEFAULT_PRIVATESEND_MULTISESSION));
610610
strUsage += HelpMessageOpt("-privatesendsessions=<n>", strprintf(_("Use N separate masternodes in parallel to mix funds (%u-%u, default: %u)"), MIN_PRIVATESEND_SESSIONS, MAX_PRIVATESEND_SESSIONS, DEFAULT_PRIVATESEND_SESSIONS));
611611
strUsage += HelpMessageOpt("-privatesendrounds=<n>", strprintf(_("Use N separate masternodes for each denominated input to mix funds (%u-%u, default: %u)"), MIN_PRIVATESEND_ROUNDS, MAX_PRIVATESEND_ROUNDS, DEFAULT_PRIVATESEND_ROUNDS));
612-
strUsage += HelpMessageOpt("-privatesendamount=<n>", strprintf(_("Keep N DASH anonymized (%u-%u, default: %u)"), MIN_PRIVATESEND_AMOUNT, MAX_PRIVATESEND_AMOUNT, DEFAULT_PRIVATESEND_AMOUNT));
612+
strUsage += HelpMessageOpt("-privatesendamount=<n>", strprintf(_("Keep N DASH mixed (%u-%u, default: %u)"), MIN_PRIVATESEND_AMOUNT, MAX_PRIVATESEND_AMOUNT, DEFAULT_PRIVATESEND_AMOUNT));
613613
strUsage += HelpMessageOpt("-privatesenddenoms=<n>", strprintf(_("Create up to N inputs of each denominated amount (%u-%u, default: %u)"), MIN_PRIVATESEND_DENOMS, MAX_PRIVATESEND_DENOMS, DEFAULT_PRIVATESEND_DENOMS));
614614
#endif // ENABLE_WALLET
615615

src/privatesend/privatesend-client.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ bool CPrivateSendClientManager::CheckAutomaticBackup()
753753
}
754754

755755
//
756-
// Passively run mixing in the background to anonymize funds based on the given configuration.
756+
// Passively run mixing in the background to mix funds based on the given configuration.
757757
//
758758
bool CPrivateSendClientSession::DoAutomaticDenominating(CConnman& connman, bool fDryRun)
759759
{
@@ -815,10 +815,10 @@ bool CPrivateSendClientSession::DoAutomaticDenominating(CConnman& connman, bool
815815
// including denoms but applying some restrictions
816816
CAmount nBalanceAnonymizable = vpwallets[0]->GetAnonymizableBalance();
817817

818-
// anonymizable balance is way too small
818+
// mixable balance is way too small
819819
if (nBalanceAnonymizable < nValueMin) {
820-
LogPrint(BCLog::PRIVATESEND, "CPrivateSendClientSession::DoAutomaticDenominating -- Not enough funds to anonymize\n");
821-
strAutoDenomResult = _("Not enough funds to anonymize.");
820+
LogPrint(BCLog::PRIVATESEND, "CPrivateSendClientSession::DoAutomaticDenominating -- Not enough funds to mix\n");
821+
strAutoDenomResult = _("Not enough funds to mix.");
822822
return false;
823823
}
824824

src/qt/coincontroldialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ void CoinControlDialog::viewItemChanged(QTreeWidgetItem* item, int column)
432432
int nRounds = vpwallets[0]->GetRealOutpointPrivateSendRounds(outpt);
433433
if (coinControl->IsUsingPrivateSend() && nRounds < privateSendClient.nPrivateSendRounds) {
434434
QMessageBox::warning(this, windowTitle(),
435-
tr("Non-anonymized input selected. <b>PrivateSend will be disabled.</b><br><br>If you still want to use PrivateSend, please deselect all non-anonymized inputs first and then check the PrivateSend checkbox again."),
435+
tr("Non-mixed input selected. <b>PrivateSend will be disabled.</b><br><br>If you still want to use PrivateSend, please deselect all non-mixed inputs first and then check the PrivateSend checkbox again."),
436436
QMessageBox::Ok, QMessageBox::Ok);
437437
coinControl->UsePrivateSend(false);
438438
}

src/qt/dashstrings.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ QT_TRANSLATE_NOOP("dash-core", ""
186186
"about the software."),
187187
QT_TRANSLATE_NOOP("dash-core", ""
188188
"PrivateSend uses exact denominated amounts to send funds, you might simply "
189-
"need to anonymize some more coins."),
189+
"need to mix some more coins."),
190190
QT_TRANSLATE_NOOP("dash-core", ""
191191
"Prune configured below the minimum of %d MiB. Please use a higher number."),
192192
QT_TRANSLATE_NOOP("dash-core", ""
@@ -444,7 +444,7 @@ QT_TRANSLATE_NOOP("dash-core", "Invalid script detected."),
444444
QT_TRANSLATE_NOOP("dash-core", "Invalid spork address specified with -sporkaddr"),
445445
QT_TRANSLATE_NOOP("dash-core", "KeePassHttp id for the established association"),
446446
QT_TRANSLATE_NOOP("dash-core", "KeePassHttp key for AES encrypted communication with KeePass"),
447-
QT_TRANSLATE_NOOP("dash-core", "Keep N DASH anonymized (%u-%u, default: %u)"),
447+
QT_TRANSLATE_NOOP("dash-core", "Keep N DASH mixed (%u-%u, default: %u)"),
448448
QT_TRANSLATE_NOOP("dash-core", "Keep at most <n> unconnectable transactions in memory (default: %u)"),
449449
QT_TRANSLATE_NOOP("dash-core", "Keep the transaction memory pool below <n> megabytes (default: %u)"),
450450
QT_TRANSLATE_NOOP("dash-core", "Keypool ran out, please call keypoolrefill first"),
@@ -482,7 +482,7 @@ QT_TRANSLATE_NOOP("dash-core", "Node relay options:"),
482482
QT_TRANSLATE_NOOP("dash-core", "Non-standard public key detected."),
483483
QT_TRANSLATE_NOOP("dash-core", "Not compatible with existing transactions."),
484484
QT_TRANSLATE_NOOP("dash-core", "Not enough file descriptors available."),
485-
QT_TRANSLATE_NOOP("dash-core", "Not enough funds to anonymize."),
485+
QT_TRANSLATE_NOOP("dash-core", "Not enough funds to mix."),
486486
QT_TRANSLATE_NOOP("dash-core", "Not in the Masternode list."),
487487
QT_TRANSLATE_NOOP("dash-core", "Number of automatic wallet backups (default: %u)"),
488488
QT_TRANSLATE_NOOP("dash-core", "Only connect to nodes in network <net> (ipv4, ipv6 or onion)"),

src/qt/forms/optionsdialog.ui

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
<item>
222222
<widget class="QLabel" name="label">
223223
<property name="toolTip">
224-
<string>This setting determines the amount of individual masternodes that an input will be anonymized through.&lt;br/&gt;More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</string>
224+
<string>This setting determines the amount of individual masternodes that an input will be mixed through.&lt;br/&gt;More rounds of mixing gives a higher degree of privacy, but also costs more in fees.</string>
225225
</property>
226226
<property name="text">
227227
<string>PrivateSend rounds to use</string>
@@ -263,7 +263,7 @@
263263
<string notr="true"/>
264264
</property>
265265
<property name="text">
266-
<string>Amount of Dash to keep anonymized</string>
266+
<string>Amount of Dash to keep mixed</string>
267267
</property>
268268
</widget>
269269
</item>

src/qt/sendcoinsdialog.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -272,19 +272,19 @@ void SendCoinsDialog::on_sendButton_clicked()
272272
return;
273273
}
274274

275-
QString strFunds = tr("using") + " <b>" + tr("anonymous funds") + "</b>";
275+
QString strFunds = tr("using") + " <b>" + tr("mixed funds") + "</b>";
276276
QString strFee = "";
277277

278278
if(ui->checkUsePrivateSend->isChecked()) {
279-
strFunds = tr("using") + " <b>" + tr("anonymous funds") + "</b>";
279+
strFunds = tr("using") + " <b>" + tr("mixed funds") + "</b>";
280280
QString strNearestAmount(
281281
BitcoinUnits::formatWithUnit(
282282
model->getOptionsModel()->getDisplayUnit(), CPrivateSend::GetSmallestDenomination()));
283283
strFee = QString(tr(
284284
"(privatesend requires this amount to be rounded up to the nearest %1)."
285285
).arg(strNearestAmount));
286286
} else {
287-
strFunds = tr("using") + " <b>" + tr("any available funds (not anonymous)") + "</b>";
287+
strFunds = tr("using") + " <b>" + tr("any available funds (not mixed)") + "</b>";
288288
}
289289

290290
fNewRecipientAllowed = false;

0 commit comments

Comments
 (0)