Skip to content

Commit

Permalink
squashme
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonNorthey92 committed Jun 3, 2024
1 parent 105cfbb commit b05494d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion e2e/deploy-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"l1ChainID": 900,
"l1ChainID": 1337,
"l2ChainID": 901,
"l2BlockTime": 2,
"maxSequencerDrift": 300,
Expand Down
13 changes: 6 additions & 7 deletions e2e/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,9 @@ services:
- "op-geth-l1"
healthcheck:
test: ["CMD-SHELL", "ls /l2configs/rollup.json"]
ports:
- "8551:8551"
- "8546:8546"
environment:
ADMIN_PRIVATE_KEY: "${ADMIN_PRIVATE_KEY}"
OP_GETH_L1_RPC: "http://op-geth-l1:8545"
OP_GETH_L1_RPC: "http://127.0.0.1:8545"
TBC_NETWORK: "localnet"
working_dir: "/tmp"
command:
Expand All @@ -193,6 +190,7 @@ services:
- "./deploy-config.json:/git/optimism/packages/contracts-bedrock/deploy-config/devnetL1.json"
- "./prestate-proof.json:/git/optimism/op-program/bin/prestate-proof.json"
- { type: "tmpfs", target: "/tmp" }
network_mode: host

op-node:
build:
Expand All @@ -207,10 +205,10 @@ services:
op-geth-l2:
condition: "service_healthy"
environment:
OP_NODE_BSS_WS: "http://bssd:8081/v1/ws"
OP_NODE_BSS_WS: "http://127.0.0.1:8081/v1/ws"
command:
- "op-node/bin/op-node"
- "--l2=ws://op-geth-l2:8551"
- "--l2=ws://127.0.0.1:8551"
- "--l2.jwt-secret=/tmp/jwt.txt"
- "--sequencer.enabled"
- "--sequencer.l1-confs=0"
Expand All @@ -220,7 +218,7 @@ services:
- "--rpc.port=8547"
- "--p2p.disable"
- "--rpc.enable-admin"
- "--l1=http://op-geth-l1:8545"
- "--l1=http://127.0.0.1:8545"
- "--l1.rpckind=standard"
- "--l1.trustrpc"
- "--log.level=info"
Expand All @@ -229,6 +227,7 @@ services:
volumes:
- "l2configs:/l2configs"
- "./jwt.txt:/tmp/jwt.txt"
network_mode: host

op-batcher:
build:
Expand Down

0 comments on commit b05494d

Please sign in to comment.