Skip to content

Commit

Permalink
FIX: op-network
Browse files Browse the repository at this point in the history
  • Loading branch information
gbayasgalan committed Feb 6, 2025
1 parent e43449d commit 2d3081b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion launcher/src/backend/ethereum-services/L2GethService.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class L2GethService extends NodeService {
ports, // ports
volumes, // volumes
"root", // user
"op-" + network // network
network // network
// executionClients
// consensusClients
);
Expand Down
4 changes: 2 additions & 2 deletions launcher/src/backend/ethereum-services/OpGethService.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class OpGethService extends NodeService {
ports, // ports
volumes, // volumes
"root", // user
"op-" + network, // network
network, // network
executionClients ? executionClients : [] // executionClients
// consensusClients
);
Expand Down Expand Up @@ -68,7 +68,7 @@ export class OpGethService extends NodeService {
`--port=39393`,
`--discovery.port=39393`,
`--db.engine=pebble`,
`--op-network=op-${network}`,
`--op-network=${network}`,
`--metrics`,
`--metrics.expensive`,
`--metrics.port=6060`,
Expand Down
4 changes: 2 additions & 2 deletions launcher/src/backend/ethereum-services/OpNodeBeaconService.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class OpNodeBeaconService extends NodeService {
"--metrics.addr=0.0.0.0",
"--metrics.port=7300",
"--syncmode=execution-layer",
`--network=op-${network}`,
`--network=${network}`,
"--rollup.load-protocol-versions=true",
"--rollup.halt=major",
"--p2p.priv.path=/p2p/opnode_p2p_priv.txt",
Expand All @@ -73,7 +73,7 @@ export class OpNodeBeaconService extends NodeService {
ports, //ports
volumes, //volumes
null, //user
"op-" + network, //network
network, //network
executionClients, //executionClients
consensusClients, //consensusClients
null //mevboost
Expand Down

0 comments on commit 2d3081b

Please sign in to comment.