From ab264ac1d989bff97490213e42b4b96763fb67ef Mon Sep 17 00:00:00 2001 From: Foivos Date: Fri, 20 Dec 2024 18:23:14 +0200 Subject: [PATCH] finaly fixed the tokenManager bytecode --- contracts/interfaces/IBaseTokenManager.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/contracts/interfaces/IBaseTokenManager.sol b/contracts/interfaces/IBaseTokenManager.sol index b3dba446..2ceff77d 100644 --- a/contracts/interfaces/IBaseTokenManager.sol +++ b/contracts/interfaces/IBaseTokenManager.sol @@ -9,14 +9,12 @@ pragma solidity ^0.8.0; interface IBaseTokenManager { /** * @notice A function that returns the token id. - * @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. */ function interchainTokenId() external view returns (bytes32); /** * @notice A function that should return the address of the token. * Must be overridden in the inheriting contract. - * @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 address address of the token. */ function tokenAddress() external view returns (address);