Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
5f168648
Commit
5f168648
authored
Feb 14, 2023
by
clabby
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lint deployment script
parent
8d19667d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
012-L2OutputOracleImpl.ts
packages/contracts-bedrock/deploy/012-L2OutputOracleImpl.ts
+10
-3
No files found.
packages/contracts-bedrock/deploy/012-L2OutputOracleImpl.ts
View file @
5f168648
...
@@ -6,9 +6,16 @@ import { assertContractVariable, deploy } from '../src/deploy-utils'
...
@@ -6,9 +6,16 @@ import { assertContractVariable, deploy } from '../src/deploy-utils'
const
deployFn
:
DeployFunction
=
async
(
hre
)
=>
{
const
deployFn
:
DeployFunction
=
async
(
hre
)
=>
{
if
(
hre
.
deployConfig
.
l2BlockTime
===
0
)
{
if
(
hre
.
deployConfig
.
l2BlockTime
===
0
)
{
throw
new
Error
(
'
L2OutputOracle deployment: l2BlockTime must be greater than 0
'
)
throw
new
Error
(
}
else
if
(
hre
.
deployConfig
.
l2OutputOracleSubmissionInterval
<=
hre
.
deployConfig
.
l2BlockTime
)
{
'
L2OutputOracle deployment: l2BlockTime must be greater than 0
'
throw
new
Error
(
'
L2OutputOracle deployment: submissionInterval must be greater than the l2BlockTime
'
)
)
}
else
if
(
hre
.
deployConfig
.
l2OutputOracleSubmissionInterval
<=
hre
.
deployConfig
.
l2BlockTime
)
{
throw
new
Error
(
'
L2OutputOracle deployment: submissionInterval must be greater than the l2BlockTime
'
)
}
}
await
deploy
({
await
deploy
({
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment