From 8d738c4eff43a49abbbec33ebfe81fdbb022f190 Mon Sep 17 00:00:00 2001 From: David Date: Sat, 30 Dec 2023 13:00:21 +0800 Subject: [PATCH] feat: update configs --- .env.sample | 2 +- script/start-driver.sh | 3 +-- script/start-proposer.sh | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.env.sample b/.env.sample index 3a54253..1f8211a 100644 --- a/.env.sample +++ b/.env.sample @@ -43,7 +43,7 @@ L1_PROVER_PRIVATE_KEY= PROVE_BLOCK_TX_GAS_LIMIT= # Minimum accepted fee for accepting proving a block (in wei) MIN_ACCEPTABLE_PROOF_FEE=1 -# SGX Raiko-host service endpoint +# SGX Raiko service endpoint SGX_RAIKO_HOST= # If you want to be a proposer who proposes L2 execution engine's transactions in mempool to Taiko L1 protocol diff --git a/script/start-driver.sh b/script/start-driver.sh index 4d1d65d..fd98ddc 100755 --- a/script/start-driver.sh +++ b/script/start-driver.sh @@ -11,8 +11,7 @@ if [ "$DISABLE_P2P_SYNC" == "false" ]; then --taikoL2 ${TAIKO_L2_ADDRESS} \ --jwtSecret /data/taiko-geth/geth/jwtsecret \ --p2p.syncVerifiedBlocks \ - --p2p.checkPointSyncUrl https://rpc.jolnir.taiko.xyz \ - --p2p.syncTimeout "6000" + --p2p.checkPointSyncUrl https://rpc.katla.taiko.xyz else taiko-client driver \ --l1.ws ${L1_ENDPOINT_WS} \ diff --git a/script/start-proposer.sh b/script/start-proposer.sh index e698c3d..d602d9e 100755 --- a/script/start-proposer.sh +++ b/script/start-proposer.sh @@ -13,7 +13,7 @@ ARGS="--l1.ws ${L1_ENDPOINT_WS} --proverEndpoints ${PROVER_ENDPOINTS} --tierFee.optimistic ${BLOCK_PROPOSAL_FEE} --tierFee.sgx ${BLOCK_PROPOSAL_FEE} - --tierFee.pseZKEvm ${BLOCK_PROPOSAL_FEE} + --tierFee.pseZKEvm ${BLOCK_PROPOSAL_FEE}" if [[ ! -z "$TXPOOL_LOCALS" ]]; then ARGS="${ARGS} --txpool.localsOnly"