1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Allow max fee to be equal to max priority fee (#11778)

This commit is contained in:
Dan J Miller 2021-08-05 14:15:02 -02:30 committed by GitHub
parent 24d6456aaf
commit e9ef3b168a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,6 @@ import {
import {
bnGreaterThan,
bnLessThan,
bnGreaterThanEqualTo,
bnLessThanEqualTo,
} from '../helpers/utils/util';
import { GAS_FORM_ERRORS } from '../helpers/constants/gas';
@ -429,9 +428,7 @@ export function useGasFeeInputs(
if (networkAndAccountSupports1559) {
if (bnLessThanEqualTo(maxPriorityFeePerGasToUse, 0)) {
gasErrors.maxPriorityFee = GAS_FORM_ERRORS.MAX_PRIORITY_FEE_BELOW_MINIMUM;
} else if (
bnGreaterThanEqualTo(maxPriorityFeePerGasToUse, maxFeePerGasToUse)
) {
} else if (bnGreaterThan(maxPriorityFeePerGasToUse, maxFeePerGasToUse)) {
gasErrors.maxFee = GAS_FORM_ERRORS.MAX_FEE_IMBALANCE;
}
}
@ -449,9 +446,7 @@ export function useGasFeeInputs(
)
) {
gasWarnings.maxPriorityFee = GAS_FORM_ERRORS.MAX_PRIORITY_FEE_TOO_LOW;
} else if (
bnGreaterThanEqualTo(maxPriorityFeePerGasToUse, maxFeePerGasToUse)
) {
} else if (bnGreaterThan(maxPriorityFeePerGasToUse, maxFeePerGasToUse)) {
gasErrors.maxFee = GAS_FORM_ERRORS.MAX_FEE_IMBALANCE;
} else if (
gasFeeEstimates?.high &&