diff --git a/src/reducers/transactionReducer.js b/src/reducers/transactionReducer.js index 273defe9..7c9111b4 100644 --- a/src/reducers/transactionReducer.js +++ b/src/reducers/transactionReducer.js @@ -163,8 +163,8 @@ function updateFeeRate(state, action) { // Get the fee. Ignore rate-too-high errors because this value creates // problems when trying to author a CPFP. const fee = - feeRateError === null && - feeRateError !== FeeValidationError.FEE_RATE_TOO_HIGH + feeRateError === null || + feeRateError === FeeValidationError.FEE_RATE_TOO_HIGH ? setFeeForRate(state, feeRateString, state.outputs.length) : "";