Skip to content

Commit

Permalink
no more op-geth-l1 in localnet test main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonNorthey92 committed Oct 25, 2024
1 parent 128e732 commit ac5b6a2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion e2e/monitor/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,17 @@ func monitorRolledUpTxs(ctx context.Context, s *state, mtx *sync.Mutex) {
`

runJs := func(jsi string, layer string, ipcPath string) string {

prefix := "op-"
if layer == "l1" {
prefix = ""
}

container := fmt.Sprintf("e2e-%sgeth-%s-1", prefix, layer)
cmd := exec.Command(
"docker",
"exec",
fmt.Sprintf("e2e-op-geth-%s-1", layer),
container,
"geth",
"attach",
"--exec",
Expand Down

0 comments on commit ac5b6a2

Please sign in to comment.