Skip to content

Commit

Permalink
Make the coinjoin input warning less scary (#3728)
Browse files Browse the repository at this point in the history
* Link to documentation

Signed-off-by: pasta <pasta@dashboost.org>

* Use coinjoin link instead of privatesend
  • Loading branch information
PastaPastaPasta committed Jul 1, 2021
1 parent 2125805 commit fd96da3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/qt/sendcoinsdialog.cpp
Expand Up @@ -407,6 +407,9 @@ void SendCoinsDialog::send(QList<SendCoinsRecipient> recipients)
questionString.append("<br />");
questionString.append("<span style='" + GUIUtil::getThemedStyleQString(GUIUtil::ThemedStyle::TS_ERROR) + "'>");
questionString.append(tr("Warning: Using %1 with %2 or more inputs can harm your privacy and is not recommended").arg("CoinJoin").arg(10));
questionString.append("<a style='" + GUIUtil::getThemedStyleQString(GUIUtil::ThemedStyle::TS_COMMAND) + "' href=\"https://docs.dash.org/en/stable/wallets/dashcore/coinjoin-instantsend.html#inputs\">");
questionString.append(tr("Click to learn more"));
questionString.append("</a>");
questionString.append("</span> ");
}
}
Expand Down

0 comments on commit fd96da3

Please sign in to comment.