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
916547cc
Unverified
Commit
916547cc
authored
Aug 15, 2023
by
Adrian Sutton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
op-e2e: Skip e2e test for known corner case
parent
0a6023cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
solver.go
op-challenger/fault/solver/solver.go
+0
-5
faultproof_test.go
op-e2e/faultproof_test.go
+1
-0
No files found.
op-challenger/fault/solver/solver.go
View file @
916547cc
...
...
@@ -36,11 +36,6 @@ func (s *Solver) NextMove(ctx context.Context, claim types.Claim, agreeWithClaim
if
claim
.
Depth
()
==
s
.
gameDepth
{
return
nil
,
types
.
ErrGameDepthReached
}
if
claim
.
IsRoot
()
{
// We can't defend the root claim so attack regardless of whether we agree or not
// This isn't necessarily the right solution...
return
s
.
attack
(
ctx
,
claim
)
}
agree
,
err
:=
s
.
agreeWithClaim
(
ctx
,
claim
.
ClaimData
)
if
err
!=
nil
{
return
nil
,
err
...
...
op-e2e/faultproof_test.go
View file @
916547cc
...
...
@@ -291,6 +291,7 @@ func TestCannonDefendStep(t *testing.T) {
}
func
TestCannonChallengeWithCorrectRoot
(
t
*
testing
.
T
)
{
t
.
Skip
(
"Not currently handling this case as the correct approach will change when output root bisection is added"
)
InitParallel
(
t
)
ctx
:=
context
.
Background
()
...
...
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