Skip to content

Commit

Permalink
Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
yorhodes committed Dec 2, 2022
1 parent 61929d5 commit da0ad01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion solidity/contracts/middleware/InterchainAccountRouter.sol
Expand Up @@ -26,7 +26,6 @@ contract InterchainAccountRouter is Router, IInterchainAccountRouter {
);

function initialize(
address _owner,
address _mailbox,
address _interchainGasPaymaster,
address _interchainSecurityModule
Expand Down
Expand Up @@ -20,16 +20,15 @@ contract LiquidityLayerRouter is Router {
event LiquidityLayerAdapterSet(string indexed bridge, address adapter);

function initialize(
address _owner,
address _mailbox,
address _interchainGasPaymaster,
address _interchainSecurityModule
) public initializer {
__HyperlaneConnectionClient_initialize(
_mailbox,
_interchainGasPaymaster
_interchainGasPaymaster,
_interchainSecurityModule
);
_transferOwnership(_owner);
}

function dispatchWithTokens(
Expand Down

0 comments on commit da0ad01

Please sign in to comment.