diff options
author | Gregory Sanders <gsanders87@gmail.com> | 2017-05-11 16:41:53 -0400 |
---|---|---|
committer | Gregory Sanders <gsanders87@gmail.com> | 2017-05-11 22:28:46 -0400 |
commit | 091a9ae21c47ea7c479e58465ff8aaee7a378fc5 (patch) | |
tree | f5b5f3e4a8c47f0e7aa09f74a450194db6566981 /src/wallet/wallet.cpp | |
parent | 94e52273f30fc9f3f1a7b58778ed21781bb2a744 (diff) |
remove minimum total fee option
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index ea329d6ebe..c2316679b4 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -2599,9 +2599,6 @@ bool CWallet::CreateTransaction(const std::vector<CRecipient>& vecSend, CWalletT currentConfirmationTarget = coinControl->nConfirmTarget; CAmount nFeeNeeded = GetMinimumFee(nBytes, currentConfirmationTarget, ::mempool, ::feeEstimator); - if (coinControl && nFeeNeeded > 0 && coinControl->nMinimumTotalFee > nFeeNeeded) { - nFeeNeeded = coinControl->nMinimumTotalFee; - } if (coinControl && coinControl->fOverrideFeeRate) nFeeNeeded = coinControl->nFeeRate.GetFee(nBytes); |