Skip to content

Commit

Permalink
some more trying to preserve bytecode
Browse files Browse the repository at this point in the history
  • Loading branch information
Foivos committed Dec 20, 2024
1 parent bcef24d commit 426804b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/interfaces/ITokenManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { IFlowLimit } from './IFlowLimit.sol';
*/
interface ITokenManager is IBaseTokenManager, IOperator, IFlowLimit, IImplementation {
error TokenLinkerZeroAddress();
error NotService(address caller);
error NotService(address caller);
error TakeTokenFailed();
error GiveTokenFailed();
error NotToken(address caller);
Expand All @@ -25,7 +25,6 @@ interface ITokenManager is IBaseTokenManager, IOperator, IFlowLimit, IImplementa

/**
* @notice Returns implementation type of this token manager.
* @dev This is stored in the proxy and should not be called in the implementation, but it is included here so that the interface properly tells us what functions exist.
* @return uint256 The implementation type of this token manager.
*/
function implementationType() external view returns (uint256);
Expand Down

0 comments on commit 426804b

Please sign in to comment.