Fixes #16203.
On PR #15996, the totalfee argument in bumpfee
gets deprecated. The feeRate argument in bumpfee
serves as a replacement to totalFee.
Small changes to CreateRateBumpTransaction
- If the coin_control passed in has a feeRate set then we check if the feeRate is OK and if so, create the bump transaction. The logic to verify if the feeRate is good should be identical to the logic that verifies the totalFee value.
- If the coin_control does not have a feeRate set then we estimate the fee as we used to.