Skip to content

Commit a554259

Browse files
committed
Remove unnecessary whitespaces
1 parent d359c61 commit a554259

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/qt/privacydialog.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ PrivacyDialog::PrivacyDialog(QWidget* parent) : QDialog(parent, Qt::WindowSystem
8181
ui->labelZsupplyText500->setText(tr("Denom. <b>500</b>:"));
8282
ui->labelZsupplyText1000->setText(tr("Denom. <b>1000</b>:"));
8383
ui->labelZsupplyText5000->setText(tr("Denom. <b>5000</b>:"));
84-
84+
8585
// PIVX settings
8686
QSettings settings;
8787
if (!settings.contains("nSecurityLevel")){
@@ -237,7 +237,7 @@ void PrivacyDialog::on_pushButtonMintzPIV_clicked()
237237

238238
void PrivacyDialog::on_pushButtonMintReset_clicked()
239239
{
240-
ui->TEMintStatus->setPlainText(tr("Starting ResetMintZerocoin: rescanning complete blockchain, this will need up to 30 minutes depending on your hardware. \nPlease be patient..."));
240+
ui->TEMintStatus->setPlainText(tr("Starting ResetMintZerocoin: rescanning complete blockchain, this will need up to 30 minutes depending on your hardware.\nPlease be patient..."));
241241
ui->TEMintStatus->repaint ();
242242

243243
int64_t nTime = GetTimeMillis();
@@ -407,7 +407,7 @@ void PrivacyDialog::sendzPIV()
407407
}
408408

409409
int64_t nTime = GetTimeMillis();
410-
ui->TEMintStatus->setPlainText(tr("Spending Zerocoin.\nComputationally expensive, might need several minutes depending on the selected Security Level and your hardware. \nPlease be patient..."));
410+
ui->TEMintStatus->setPlainText(tr("Spending Zerocoin.\nComputationally expensive, might need several minutes depending on the selected Security Level and your hardware.\nPlease be patient..."));
411411
ui->TEMintStatus->repaint();
412412

413413
// use mints from zPIV selector if applicable
@@ -461,7 +461,7 @@ void PrivacyDialog::sendzPIV()
461461
int nNeededSpends = receipt.GetNeededSpends(); // Number of spends we would need for this transaction
462462
const int nMaxSpends = Params().Zerocoin_MaxSpendsPerTransaction(); // Maximum possible spends for one zPIV transaction
463463
if (nNeededSpends > nMaxSpends) {
464-
QString strStatusMessage = tr("Too much inputs (") + QString::number(nNeededSpends, 10) + tr(") needed. \nMaximum allowed: ") + QString::number(nMaxSpends, 10);
464+
QString strStatusMessage = tr("Too much inputs (") + QString::number(nNeededSpends, 10) + tr(") needed.\nMaximum allowed: ") + QString::number(nMaxSpends, 10);
465465
strStatusMessage += tr("\nEither mint higher denominations (so fewer inputs are needed) or reduce the amount to spend.");
466466
QMessageBox::warning(this, tr("Spend Zerocoin"), strStatusMessage.toStdString().c_str(), QMessageBox::Ok, QMessageBox::Ok);
467467
ui->TEMintStatus->setPlainText(tr("Spend Zerocoin failed with status = ") +QString::number(receipt.GetStatus(), 10) + "\n" + "Message: " + QString::fromStdString(strStatusMessage.toStdString()));
@@ -810,4 +810,4 @@ void PrivacyDialog::updateSPORK16Status()
810810
ui->pushButtonSpendzPIV->setEnabled(true);
811811
ui->pushButtonSpendzPIV->setToolTip(tr("Spend Zerocoin. Without 'Pay To:' address creates payments to yourself."));
812812
}
813-
}
813+
}

0 commit comments

Comments
 (0)