From d7fbdfb28ecd4abb25f9ceb0b44574ae59e2333b Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Thu, 6 Jun 2024 08:31:38 +0200 Subject: [PATCH] fix --- taiko-hekla.yml | 2 ++ taiko/script/start-driver.sh | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/taiko-hekla.yml b/taiko-hekla.yml index 1bf8cb5a..d4b544b9 100644 --- a/taiko-hekla.yml +++ b/taiko-hekla.yml @@ -63,6 +63,8 @@ services: - "L1_ENDPOINT_WS=${TAIKO_HOLESKY_EXECUTION_WS}" - "L1_BEACON_HTTP=${TAIKO_HOLESKY_BEACON_REST}" - "L2_CHECKPOINT_SYNC_RPC=https://rpc.hekla.taiko.xyz" + - "L2_GETH_RPC=http://taiko-hekla:8545" + - "L2_GETH_AUTH=http://taiko-hekla:8551" volumes: - taiko-hekla:/data/taiko-geth - ./taiko/script:/script diff --git a/taiko/script/start-driver.sh b/taiko/script/start-driver.sh index ad0987a5..f4aa9876 100755 --- a/taiko/script/start-driver.sh +++ b/taiko/script/start-driver.sh @@ -4,9 +4,9 @@ set -eou pipefail exec taiko-client driver \ --l1.ws "${L1_ENDPOINT_WS}" \ - --l2.ws ws://taiko:8545 \ + --l2.ws "${L2_GETH_RPC:-ws://taiko:8545}" \ --l1.beacon "${L1_BEACON_HTTP}" \ - --l2.auth http://taiko:8551 \ + --l2.auth "${L2_GETH_AUTH:-http://taiko:8551}" \ --taikoL1 "${TAIKO_L1_ADDRESS}" \ --taikoL2 "${TAIKO_L2_ADDRESS}" \ --jwtSecret /data/taiko-geth/geth/jwtsecret \