Skip to content

Commit

Permalink
[Trivial] Fix wording: "must be above" to "must be at least"
Browse files Browse the repository at this point in the history
Since the fee can be set to a value equal to minTxFee
Github-Pull: #1576
Rebased-From: b8fad43
  • Loading branch information
random-zebra authored and Fuzzbawls committed May 5, 2020
1 parent da791e0 commit 9ed3b99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qt/pivx/sendcustomfeedialog.cpp
Expand Up @@ -129,8 +129,8 @@ void SendCustomFeeDialog::accept()
inform(tr("Fee too high. Must be below: %1").arg(
BitcoinUnits::formatWithUnit(walletModel->getOptionsModel()->getDisplayUnit(), insaneFee)));
} else if (customFee < CWallet::minTxFee.GetFeePerK()) {
inform(tr("Fee too low. Must be above: %1").arg(
BitcoinUnits::formatWithUnit(walletModel->getOptionsModel()->getDisplayUnit(), CWallet::minTxFee.GetFeePerK() * 1000)));
inform(tr("Fee too low. Must be at least: %1").arg(
BitcoinUnits::formatWithUnit(walletModel->getOptionsModel()->getDisplayUnit(), CWallet::minTxFee.GetFeePerK())));
} else {
walletModel->setWalletCustomFee(fUseCustomFee, customFee);
QDialog::accept();
Expand Down

0 comments on commit 9ed3b99

Please sign in to comment.