Skip to content

Commit

Permalink
move _setup function after constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
ahramy committed Oct 17, 2024
1 parent 1a3b3a3 commit a0223dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/InterchainTokenFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ contract InterchainTokenFactory is IInterchainTokenFactory, ITokenManagerType, M
gateway = IAxelarGatewayWithToken(address(interchainTokenService.gateway()));
}

function _setup(bytes calldata data) internal override {}

/**
* @notice Getter for the contract id.
* @return bytes32 The contract id of this contract.
Expand All @@ -50,8 +52,6 @@ contract InterchainTokenFactory is IInterchainTokenFactory, ITokenManagerType, M
return CONTRACT_ID;
}

function _setup(bytes calldata params) internal override {}

/**
* @notice Calculates the salt for an interchain token.
* @param chainNameHash_ The hash of the chain name.
Expand Down

0 comments on commit a0223dd

Please sign in to comment.