diff --git a/contracts/scripts/foundry/DeployLidoGateway.s.sol b/contracts/scripts/foundry/DeployLidoGateway.s.sol index 49e40078b1..2619bd8579 100644 --- a/contracts/scripts/foundry/DeployLidoGateway.s.sol +++ b/contracts/scripts/foundry/DeployLidoGateway.s.sol @@ -33,7 +33,7 @@ contract DeployLidoGateway is Script { vm.startBroadcast(L2_DEPLOYER_PRIVATE_KEY); if (keccak256(abi.encodePacked(NETWORK)) == keccak256(abi.encodePacked("L1"))) { - // depoly l1 lido gateway + // deploy l1 lido gateway L1LidoGateway gateway = new L1LidoGateway( L1_WSTETH_ADDR, L2_WSTETH_ADDR, @@ -43,7 +43,7 @@ contract DeployLidoGateway is Script { ); logAddress("L1_LIDO_GATEWAY_IMPLEMENTATION_ADDR", address(gateway)); } else if (keccak256(abi.encodePacked(NETWORK)) == keccak256(abi.encodePacked("L2"))) { - // depoly l2 lido gateway + // deploy l2 lido gateway L2LidoGateway gateway = new L2LidoGateway( L1_WSTETH_ADDR, L2_WSTETH_ADDR, diff --git a/contracts/src/lido/LidoGatewayManager.sol b/contracts/src/lido/LidoGatewayManager.sol index cb3c228d40..08ccb2135c 100644 --- a/contracts/src/lido/LidoGatewayManager.sol +++ b/contracts/src/lido/LidoGatewayManager.sol @@ -80,10 +80,7 @@ abstract contract LidoGatewayManager is ScrollGatewayBase { /// @dev Stores the state of the bridging /// @param isDepositsEnabled Stores the state of the deposits /// @param isWithdrawalsEnabled Stores the state of the withdrawals - /// @param depositsEnabler The address of user who can enable deposits - /// @param depositsEnabler The address of user who can disable deposits - /// @param withdrawalsEnabler The address of user who can enable withdrawals - /// @param withdrawalsDisabler The address of user who can disable withdrawals + /// @param roles Mapping from role to list of role members. struct State { bool isDepositsEnabled; bool isWithdrawalsEnabled;