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
3cc36be2
Unverified
Commit
3cc36be2
authored
Jan 14, 2025
by
clabby
Committed by
GitHub
Jan 14, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore(op-challenger): Update kona executor to use subcommand (#13769)
parent
5f7e31ce
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
kona_server_executor.go
op-challenger/game/fault/trace/vm/kona_server_executor.go
+1
-0
kona_server_executor_test.go
...allenger/game/fault/trace/vm/kona_server_executor_test.go
+1
-0
No files found.
op-challenger/game/fault/trace/vm/kona_server_executor.go
View file @
3cc36be2
...
...
@@ -25,6 +25,7 @@ func NewNativeKonaExecutor() *KonaExecutor {
func
(
s
*
KonaExecutor
)
OracleCommand
(
cfg
Config
,
dataDir
string
,
inputs
utils
.
LocalGameInputs
)
([]
string
,
error
)
{
args
:=
[]
string
{
cfg
.
Server
,
"single"
,
"--l1-node-address"
,
cfg
.
L1
,
"--l1-beacon-address"
,
cfg
.
L1Beacon
,
"--l2-node-address"
,
cfg
.
L2
,
...
...
op-challenger/game/fault/trace/vm/kona_server_executor_test.go
View file @
3cc36be2
...
...
@@ -31,6 +31,7 @@ func TestKonaFillHostCommand(t *testing.T) {
args
,
err
:=
vmConfig
.
OracleCommand
(
cfg
,
dir
,
inputs
)
require
.
NoError
(
t
,
err
)
require
.
True
(
t
,
slices
.
Contains
(
args
,
"single"
))
require
.
True
(
t
,
slices
.
Contains
(
args
,
"--server"
))
require
.
True
(
t
,
slices
.
Contains
(
args
,
"--l1-node-address"
))
require
.
True
(
t
,
slices
.
Contains
(
args
,
"--l1-beacon-address"
))
...
...
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