Skip to content

Commit

Permalink
[Qt] make use of the nMinimumTotalFee (absolute) in coincontrols fee …
Browse files Browse the repository at this point in the history
…calculation
  • Loading branch information
jonasschnelli committed Nov 30, 2015
1 parent 80462dd commit 31b508a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/qt/coincontroldialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,9 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog)

// Fee
nPayFee = CWallet::GetMinimumFee(nBytes, nTxConfirmTarget, mempool);
if (nPayFee > 0 && coinControl->nMinimumTotalFee > nPayFee)
nPayFee = coinControl->nMinimumTotalFee;


// Allow free? (require at least hard-coded threshold and default to that if no estimate)
double dPriorityNeeded = std::max(mempoolEstimatePriority, AllowFreeThreshold());
Expand Down

0 comments on commit 31b508a

Please sign in to comment.