diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-07-02 11:50:13 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-07-02 11:50:13 -0400 |
commit | 177550101b600ccb32886695326eb72cd9752c8b (patch) | |
tree | cb15251400e71e8f7920a0de771bea5895b5fcbb /src | |
parent | 5c1b9714cb0a13be28324f91f4ec9ca66a1de8c7 (diff) |
wallet: Remove unreachable code in CreateTransaction
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 565e551fae..108b182f17 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3006,14 +3006,6 @@ bool CWallet::CreateTransaction(interfaces::Chain::Lock& locked_chain, const std return false; } - // If we made it here and we aren't even able to meet the relay fee on the next pass, give up - // because we must be at the maximum allowed fee. - if (nFeeNeeded < chain().relayMinFee().GetFee(nBytes)) - { - strFailReason = _("Transaction too large for fee policy"); - return false; - } - if (nFeeRet >= nFeeNeeded) { // Reduce fee to only the needed amount if possible. This // prevents potential overpayment in fees if the coins |