Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Dec 1, 2024
1 parent 650fd9a commit b2f24ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions configs/808813/rollup.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"ecotone_time": 0,
"fjord_time": 0,
"granite_time": 1725984001,
"holocene_time": 1732633200,
"batch_inbox_address": "0x734dde12fd466c14a85de838788efe6f1993c84c",
"deposit_contract_address": "0xbaaf3bafdbd660380938b27d21c31bb7d072a799",
"l1_system_config_address": "0x3974436fa4bb4deb5a04ace51a704b10ff5a1f25",
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/OPSuccinctL2OutputOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ contract OPSuccinctL2OutputOracle is Initializable, ISemver {

/// @notice Initializer.
/// @param _initParams The initialization parameters for the contract.
function initialize(InitParams memory _initParams) public initializer {
function initialize(InitParams memory _initParams) public reinitializer(5) {
require(_initParams.submissionInterval > 0, "L2OutputOracle: submission interval must be greater than 0");
require(_initParams.l2BlockTime > 0, "L2OutputOracle: L2 block time must be greater than 0");
require(
Expand Down
Loading

0 comments on commit b2f24ab

Please sign in to comment.