Skip to content

Commit

Permalink
wallet: error if an explicit fee rate was given but the needed fee ra…
Browse files Browse the repository at this point in the history
…te differed

This avoids cases where a user requests a fee rate below the minimum and is silently overruled by the wallet.
  • Loading branch information
kallewoof committed May 5, 2020
1 parent ec79b5f commit 44cc75f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/wallet/wallet.cpp
Expand Up @@ -2729,6 +2729,12 @@ bool CWallet::CreateTransaction(const std::vector<CRecipient>& vecSend, CTransac

// Get the fee rate to use effective values in coin selection
CFeeRate nFeeRateNeeded = GetMinimumFeeRate(*this, coin_control, &feeCalc);
// Do not, ever, assume that it's fine to change the fee rate if the user has explicitly
// provided one
if (coin_control.m_feerate && nFeeRateNeeded > *coin_control.m_feerate) {
error = strprintf(_("Fee rate (%s) is lower than the minimum fee rate setting (%s)"), coin_control.m_feerate->ToString(), nFeeRateNeeded.ToString());
return false;
}

nFeeRet = 0;
bool pick_new_inputs = true;
Expand Down

0 comments on commit 44cc75f

Please sign in to comment.