diff --git a/contracts/interfaces/ITokenManagerProxy.sol b/contracts/interfaces/ITokenManagerProxy.sol index 2e71ebd6..4737ff9c 100644 --- a/contracts/interfaces/ITokenManagerProxy.sol +++ b/contracts/interfaces/ITokenManagerProxy.sol @@ -29,7 +29,7 @@ interface ITokenManagerProxy is IProxy { function tokenAddress() external view returns (address); /** - * @notice Returns implementation type and token address in one call. + * @notice Returns implementation type and token address. */ - function getInfo() external view returns (uint256, address); + function getImplementationTypeAndTokenAddress() external view returns (uint256, address); } diff --git a/contracts/proxies/TokenManagerProxy.sol b/contracts/proxies/TokenManagerProxy.sol index d891bc26..5795e83f 100644 --- a/contracts/proxies/TokenManagerProxy.sol +++ b/contracts/proxies/TokenManagerProxy.sol @@ -53,7 +53,10 @@ contract TokenManagerProxy is BaseProxy, ITokenManagerProxy { return CONTRACT_ID; } - function getInfo() external view returns (uint256 implementationType_, address tokenAddress_) { + /** + * @notice Returns implementation type and token address. + */ + function getImplementationTypeAndTokenAddress() external view returns (uint256 implementationType_, address tokenAddress_) { implementationType_ = implementationType; tokenAddress_ = tokenAddress; }