Skip to content

Commit

Permalink
Prettier + fix merge artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
0xVolosnikov committed Jan 21, 2025
1 parent fec1c24 commit 277fcb8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion l1-contracts/contracts/governance/ChainAdmin.sol
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,4 @@ contract ChainAdmin is IChainAdmin, ReentrancyGuard {
}
emit RestrictionAdded(_restriction);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ interface IAccessControlRestriction {

/// @notice Emitted when the required role for a fallback function is set.
event FallbackRoleSet(address indexed target, bytes32 requiredRole);
}
}
2 changes: 1 addition & 1 deletion l1-contracts/contracts/governance/IChainAdmin.sol
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ interface IChainAdmin {
/// @dev Even though all the validation from external modules is executed via `staticcall`, the function
/// is marked as `nonReentrant` to prevent reentrancy attacks in case the staticcall restriction is lifted in the future.
function multicall(Call[] calldata _calls, bool _requireSuccess) external payable;
}
}
2 changes: 1 addition & 1 deletion l1-contracts/deploy-scripts/DeployL1.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -791,4 +791,4 @@ contract DeployL1Script is Script, DeployUtils {

// add this to be excluded from coverage report
function test() internal virtual override {}
}
}
2 changes: 1 addition & 1 deletion l1-contracts/deploy-scripts/DeployL2Contracts.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pragma solidity ^0.8.21;

import {Script, console2 as console} from "forge-std/Script.sol";
import {Script} from "forge-std/Script.sol";
import {stdToml} from "forge-std/StdToml.sol";

import {Utils} from "./Utils.sol";
Expand Down

0 comments on commit 277fcb8

Please sign in to comment.