mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
send confirmation dialog box should display correct smallest denom (#1329)
This commit is contained in:
parent
f08ae49904
commit
6483e6d06f
@ -23,6 +23,8 @@
|
||||
#include "txmempool.h"
|
||||
#include "wallet/wallet.h"
|
||||
|
||||
#include "darksend.h"
|
||||
|
||||
#include <QMessageBox>
|
||||
#include <QScrollBar>
|
||||
#include <QSettings>
|
||||
@ -260,7 +262,7 @@ void SendCoinsDialog::on_sendButton_clicked()
|
||||
strFunds = tr("using") + " <b>" + tr("anonymous funds") + "</b>";
|
||||
QString strNearestAmount(
|
||||
BitcoinUnits::formatWithUnit(
|
||||
model->getOptionsModel()->getDisplayUnit(), 0.1 * COIN));
|
||||
model->getOptionsModel()->getDisplayUnit(), vecPrivateSendDenominations.back()));
|
||||
strFee = QString(tr(
|
||||
"(privatesend requires this amount to be rounded up to the nearest %1)."
|
||||
).arg(strNearestAmount));
|
||||
|
Loading…
Reference in New Issue
Block a user