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
519ea7af
Commit
519ea7af
authored
Nov 14, 2023
by
joohhnnn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix format from 'make lint-go'
parent
1be655ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
faultproof_test.go
op-e2e/faultproof_test.go
+2
-2
system_fpp_test.go
op-e2e/system_fpp_test.go
+2
-1
No files found.
op-e2e/faultproof_test.go
View file @
519ea7af
...
...
@@ -531,8 +531,8 @@ func setupDisputeGameForInvalidOutputRoot(t *testing.T, outputRoot common.Hash)
// Wait for one valid output root to be submitted
l2oo
.
WaitForProposals
(
ctx
,
1
)
// Stop the honest output submitter so we can publish invalid outputs
sys
.
L2OutputSubmitter
.
Driver
()
.
StopL2OutputSubmitting
(
)
err
:=
sys
.
L2OutputSubmitter
.
Driver
()
.
StopL2OutputSubmitting
()
require
.
NoError
(
t
,
err
)
sys
.
L2OutputSubmitter
=
nil
// Submit an invalid output root
...
...
op-e2e/system_fpp_test.go
View file @
519ea7af
...
...
@@ -290,7 +290,8 @@ func testFaultProofProgramScenario(t *testing.T, ctx context.Context, sys *Syste
t
.
Log
(
"Shutting down network"
)
// Shutdown the nodes from the actual chain. Should now be able to run using only the pre-fetched data.
require
.
NoError
(
t
,
sys
.
BatchSubmitter
.
Kill
())
sys
.
L2OutputSubmitter
.
Driver
()
.
StopL2OutputSubmitting
()
err
=
sys
.
L2OutputSubmitter
.
Driver
()
.
StopL2OutputSubmitting
()
require
.
NoError
(
t
,
err
)
sys
.
L2OutputSubmitter
=
nil
for
_
,
node
:=
range
sys
.
EthInstances
{
node
.
Close
()
...
...
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