diff options
author | Andrew Chow <achow101-github@achow101.com> | 2021-08-11 22:05:51 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2021-08-13 00:34:47 -0400 |
commit | d9262324e80da32725e21d4e0fbfee56f25490b1 (patch) | |
tree | 7428fc9c27676f8a9266d56e89def41839d13124 /src/wallet | |
parent | 2de222c40198d3d528668d78cc52e2ce3fa96765 (diff) |
wallet: Assert that enough was selected to cover the fees
When the fee is not subtracted from the outputs, the amount that has
been reserved for the fee (change_and_fee - change_amount) must be
enough to cover the fee that is needed. It would be a bug to not do so,
so use an assert to make this obvious if such a situation were to occur.
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/spend.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wallet/spend.cpp b/src/wallet/spend.cpp index cd51ead539..3bb7134b24 100644 --- a/src/wallet/spend.cpp +++ b/src/wallet/spend.cpp @@ -778,6 +778,10 @@ bool CWallet::CreateTransactionInternal( fee_needed = coin_selection_params.m_effective_feerate.GetFee(nBytes); } + // The only time that fee_needed should be less than the amount available for fees (in change_and_fee - change_amount) is when + // we are subtracting the fee from the outputs. If this occurs at any other time, it is a bug. + assert(coin_selection_params.m_subtract_fee_outputs || fee_needed <= change_and_fee - change_amount); + // Update nFeeRet in case fee_needed changed due to dropping the change output if (fee_needed <= change_and_fee - change_amount) { nFeeRet = change_and_fee - change_amount; |