diff --git a/src/actions/ripple/SendFormValidationActions.js b/src/actions/ripple/SendFormValidationActions.js index 2816085b..db5131fa 100644 --- a/src/actions/ripple/SendFormValidationActions.js +++ b/src/actions/ripple/SendFormValidationActions.js @@ -221,8 +221,10 @@ export const feeValidation = ($state: State): PayloadAction => (dispatch: state.errors.fee = 'Fee must be an absolute number'; } else { const gl: BigNumber = new BigNumber(fee); - if (gl.lessThan(10)) { + if (gl.lessThan(network.fee.minFee)) { state.errors.fee = 'Fee is below recommended'; + } else if (gl.greaterThan(network.fee.maxFee)) { + state.errors.fee = 'Fee is above recommended'; } } return state;