From 23f5e3c142d174245758f92edbdecf97aec32ebf Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Fri, 6 Sep 2024 14:11:56 +0200 Subject: [PATCH] fmt --- l1-contracts/contracts/bridgehub/Bridgehub.sol | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/l1-contracts/contracts/bridgehub/Bridgehub.sol b/l1-contracts/contracts/bridgehub/Bridgehub.sol index ea9ef1500..262d4c148 100644 --- a/l1-contracts/contracts/bridgehub/Bridgehub.sol +++ b/l1-contracts/contracts/bridgehub/Bridgehub.sol @@ -577,10 +577,7 @@ contract Bridgehub is IBridgehub, ReentrancyGuard, Ownable2StepUpgradeable, Paus ) external override onlySettlementLayerRelayedSender { require(L1_CHAIN_ID != block.chainid, "BH: not in sync layer mode"); address zkChain = zkChainMap.get(_chainId); - IZKChain(zkChain).bridgehubRequestL2TransactionOnGateway( - _canonicalTxHash, - _expirationTimestamp - ); + IZKChain(zkChain).bridgehubRequestL2TransactionOnGateway(_canonicalTxHash, _expirationTimestamp); } /// @notice forwards function call to Mailbox based on ChainId