Remove FeePercentageTooLargeError rich revert

This commit is contained in:
Amir Bandeali 2019-11-30 15:39:08 -08:00
parent a54624b697
commit 5ad98700e5

View File

@ -34,14 +34,6 @@ export class UnsupportedFeeError extends RevertError {
}
}
export class FeePercentageTooLargeError extends RevertError {
constructor(feePercentage?: BigNumber | number | string) {
super('FeePercentageTooLargeError', 'FeePercentageTooLargeError(uint256 feePercentage)', {
feePercentage,
});
}
}
export class InsufficientEthForFeeError extends RevertError {
constructor(ethFeeRequired?: BigNumber | number | string, ethAvailable?: BigNumber | number | string) {
super(
@ -88,7 +80,6 @@ const types = [
UnsupportedAssetProxyError,
CompleteBuyFailedError,
UnsupportedFeeError,
FeePercentageTooLargeError,
InsufficientEthForFeeError,
OverspentWethError,
DefaultFunctionWethContractOnlyError,