You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/qt/coincontroldialog.cpp
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -430,11 +430,11 @@ void CoinControlDialog::viewItemChanged(QTreeWidgetItem* item, int column)
430
430
else {
431
431
coinControl->Select(outpt);
432
432
int nRounds = vpwallets[0]->GetRealOutpointPrivateSendRounds(outpt);
433
-
if (coinControl->fUsePrivateSend && nRounds < privateSendClient.nPrivateSendRounds) {
433
+
if (coinControl->IsUsingPrivateSend() && nRounds < privateSendClient.nPrivateSendRounds) {
434
434
QMessageBox::warning(this, windowTitle(),
435
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."),
0 commit comments