From b989ee703c42b9e469f61e6e450c64a7afe0eff2 Mon Sep 17 00:00:00 2001 From: Arr00 <13561405+arr00@users.noreply.github.com> Date: Thu, 11 Apr 2024 08:23:36 -0600 Subject: [PATCH] remove unused func from `IERC20Creator` --- contracts/utils/IERC20Creator.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/contracts/utils/IERC20Creator.sol b/contracts/utils/IERC20Creator.sol index 66021b47..cb807f48 100644 --- a/contracts/utils/IERC20Creator.sol +++ b/contracts/utils/IERC20Creator.sol @@ -18,6 +18,4 @@ interface IERC20Creator { TokenConfiguration calldata config, address recipientAddress ) external payable returns (ERC20 token); - - function feeBasisPoints() external view returns (uint16); }