We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4848db6 commit 68a7fc0Copy full SHA for 68a7fc0
src/qt/coincontroldialog.cpp
@@ -765,7 +765,7 @@ void CoinControlDialog::updateView()
765
COutPoint outpoint = COutPoint(out.tx->tx->GetHash(), out.i);
766
int nRounds = pwalletMain->GetRealOutpointPrivateSendRounds(outpoint);
767
768
- if (nRounds >= 0 || logCategories != BCLog::NONE) itemOutput->setText(COLUMN_PRIVATESEND_ROUNDS, QString::number(nRounds));
+ if (nRounds >= 0 || LogAcceptCategory(BCLog::PRIVATESEND)) itemOutput->setText(COLUMN_PRIVATESEND_ROUNDS, QString::number(nRounds));
769
else itemOutput->setText(COLUMN_PRIVATESEND_ROUNDS, tr("n/a"));
770
itemOutput->setData(COLUMN_PRIVATESEND_ROUNDS, Qt::UserRole, QVariant((qlonglong)nRounds));
771
0 commit comments