Skip to content

Commit

Permalink
rebase over dep bump
Browse files Browse the repository at this point in the history
  • Loading branch information
milapsheth committed Oct 9, 2023
1 parent 4569336 commit 14fecc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions contracts/token-implementations/StandardizedToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

pragma solidity ^0.8.0;

import { IImplementation } from '../interfaces/IImplementation.sol';
import { IStandardizedToken } from '../interfaces/IStandardizedToken.sol';
import { ITokenManager } from '../interfaces/ITokenManager.sol';
import { IInterchainToken } from '../interfaces/IInterchainToken.sol';
Expand Down Expand Up @@ -46,7 +47,7 @@ contract StandardizedToken is InterchainToken, ERC20Permit, Implementation, Dist
* @notice Returns the token manager for this token
* @return ITokenManager The token manager contract
*/
function tokenManager() public view override(InterchainToken, IInterchainToken) returns (ITokenManager) {
function tokenManager() public view override(InterchainToken, IStandardizedToken) returns (ITokenManager) {
return ITokenManager(tokenManager_);
}

Expand All @@ -55,7 +56,7 @@ contract StandardizedToken is InterchainToken, ERC20Permit, Implementation, Dist
* @param params The setup parameters in bytes
* The setup params include tokenManager, distributor, tokenName, symbol, decimals, mintAmount and mintTo
*/
function setup(bytes calldata params) external override onlyProxy {
function setup(bytes calldata params) external override(IImplementation, IStandardizedToken) onlyProxy {
{
address distributor_;
address tokenManagerAddress;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@
"README.md",
"hardhat.config.js"
]
}
}

0 comments on commit 14fecc4

Please sign in to comment.