From e33702f2c3da1a1b0f379678d805e1ca6eb91cee Mon Sep 17 00:00:00 2001 From: gretzke Date: Tue, 29 Oct 2024 00:33:01 +0100 Subject: [PATCH] remove `CustomRevert` library use for bytes4 --- src/types/Currency.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/types/Currency.sol b/src/types/Currency.sol index 03978c22e..771653400 100644 --- a/src/types/Currency.sol +++ b/src/types/Currency.sol @@ -28,8 +28,6 @@ function greaterThanOrEqualTo(Currency currency, Currency other) pure returns (b /// @title CurrencyLibrary /// @dev This library allows for transferring and holding native tokens and ERC20 tokens library CurrencyLibrary { - using CustomRevert for bytes4; - /// @notice Additional context for ERC-7751 wrapped error when a native transfer fails error NativeTransferFailed();