Skip to content

Commit

Permalink
fix(eldfell): fix zkevm-chain-proverd port in prover relayer script (#72
Browse files Browse the repository at this point in the history
)
  • Loading branch information
davidtaikocha authored Jul 18, 2023
1 parent 38d2114 commit dee982e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions script/l2/start-prover-relayer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ "$ENABLE_PROVER" == "true" ]; then
chmod +x ./wait
fi

WAIT_HOSTS=zkevm-chain-prover-rpcd:${PORT_ZKEVM_CHAIN_PROVER_RPCD} WAIT_TIMEOUT=180 ./wait
WAIT_HOSTS=zkevm-chain-prover-rpcd:9000 WAIT_TIMEOUT=180 ./wait

taiko-client prover \
--l1.ws ${L1_ENDPOINT_WS} \
Expand All @@ -17,7 +17,7 @@ if [ "$ENABLE_PROVER" == "true" ]; then
--l2.http http://l2_execution_engine:8545 \
--taikoL1 ${TAIKO_L1_ADDRESS} \
--taikoL2 ${TAIKO_L2_ADDRESS} \
--zkevmRpcdEndpoint http://zkevm-chain-prover-rpcd:${PORT_ZKEVM_CHAIN_PROVER_RPCD} \
--zkevmRpcdEndpoint http://zkevm-chain-prover-rpcd:9000 \
--zkevmRpcdParamsPath /data \
--l1.proverPrivKey ${L1_PROVER_PRIVATE_KEY} \
--maxConcurrentProvingJobs 1
Expand Down
6 changes: 3 additions & 3 deletions script/l3/start-prover-relayer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ "$ENABLE_PROVER" == "true" ]; then
chmod +x ./wait
fi

WAIT_HOSTS=zkevm-chain-prover-rpcd:${PORT_ZKEVM_CHAIN_PROVER_RPCD} WAIT_TIMEOUT=180 ./wait
WAIT_HOSTS=zkevm-chain-prover-rpcd:9000 WAIT_TIMEOUT=180 ./wait

if [ "$ENABLE_PROVER" == "true" ]; then
taiko-client prover \
Expand All @@ -19,7 +19,7 @@ if [ "$ENABLE_PROVER" == "true" ]; then
--taikoL1 ${TAIKO_L1_ADDRESS} \
--taikoL2 ${TAIKO_L2_ADDRESS} \
--taikoProverPoolL1 ${PROVER_POOL_ADDRESS} \
--zkevmRpcdEndpoint http://zkevm-chain-prover-rpcd:${PORT_ZKEVM_CHAIN_PROVER_RPCD} \
--zkevmRpcdEndpoint http://zkevm-chain-prover-rpcd:9000 \
--zkevmRpcdParamsPath /data \
--l1.proverPrivKey ${L2_PROVER_PRIVATE_KEY} \
--maxConcurrentProvingJobs 1 \
Expand All @@ -33,7 +33,7 @@ if [ "$ENABLE_PROVER" == "true" ]; then
--taikoL1 ${TAIKO_L1_ADDRESS} \
--taikoL2 ${TAIKO_L2_ADDRESS} \
--taikoProverPoolL1 ${PROVER_POOL_ADDRESS} \
--zkevmRpcdEndpoint http://zkevm-chain-prover-rpcd:${PORT_ZKEVM_CHAIN_PROVER_RPCD} \
--zkevmRpcdEndpoint http://zkevm-chain-prover-rpcd:9000 \
--zkevmRpcdParamsPath /data \
--l1.proverPrivKey ${L2_PROVER_PRIVATE_KEY} \
--maxConcurrentProvingJobs 1 \
Expand Down

0 comments on commit dee982e

Please sign in to comment.