Skip to content

Commit

Permalink
fix(l2): fix RPC port specified in .env.example (#1240)
Browse files Browse the repository at this point in the history
**Motivation**

The port should be 8552. This may make the CI fail.

---------

Co-authored-by: fborello-lambda <federicoborello@lambdaclass.com>
  • Loading branch information
xqft and fborello-lambda authored Nov 22, 2024
1 parent 46cc527 commit 2fde549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/l2/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ L1_WATCHER_TOPICS=0x6f65d68a35457dd88c1f8641be5da191aa122bc76de22ab0789dcc71929d
L1_WATCHER_CHECK_INTERVAL_MS=1000
L1_WATCHER_MAX_BLOCK_STEP=5000
L1_WATCHER_L2_PROPOSER_PRIVATE_KEY=0x385c546456b6a603a1cfcaa9ec9494ba4832da08dd6bcf4de9a71e4a01b74924
ENGINE_API_RPC_URL=http://localhost:8551
ENGINE_API_RPC_URL=http://localhost:8552
ENGINE_API_JWT_PATH=./jwt.hex
PROVER_SERVER_LISTEN_IP=127.0.0.1
PROVER_SERVER_LISTEN_PORT=3000
Expand Down
2 changes: 1 addition & 1 deletion crates/l2/docker-compose-l2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ services:
volumes:
- ../../test_data/genesis-l2.json:/genesis-l2.json
- .env:/.env:ro
command: --network /genesis-l2.json --http.addr 0.0.0.0 --http.port 1729 --authrpc.port 8551
command: --network /genesis-l2.json --http.addr 0.0.0.0 --http.port 1729 --authrpc.port 8552
depends_on:
contract_deployer:
condition: service_completed_successfully

0 comments on commit 2fde549

Please sign in to comment.