Commit 36f794ca authored by Mark Tyneway's avatar Mark Tyneway

lint: fix

parent 80643a87
...@@ -119,7 +119,12 @@ contract OptimismPortal is Initializable, ResourceMetering, Semver { ...@@ -119,7 +119,12 @@ contract OptimismPortal is Initializable, ResourceMetering, Semver {
/// @param _guardian Address that can pause withdrawals. /// @param _guardian Address that can pause withdrawals.
/// @param _paused Sets the contract's pausability state. /// @param _paused Sets the contract's pausability state.
/// @param _systemConfig Address of the SystemConfig contract. /// @param _systemConfig Address of the SystemConfig contract.
function initialize(L2OutputOracle _l2Oracle, address _guardian, SystemConfig _systemConfig, bool _paused) public reinitializer(2) { function initialize(
L2OutputOracle _l2Oracle,
address _guardian,
SystemConfig _systemConfig,
bool _paused
) public reinitializer(2) {
l2Sender = Constants.DEFAULT_L2_SENDER; l2Sender = Constants.DEFAULT_L2_SENDER;
L2_ORACLE = _l2Oracle; L2_ORACLE = _l2Oracle;
SYSTEM_CONFIG = _systemConfig; SYSTEM_CONFIG = _systemConfig;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment