Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YoGhurt111 committed Jan 14, 2025
1 parent fb6f469 commit 3f4f1eb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
8 changes: 8 additions & 0 deletions script/start-proposer-hekla.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ if [ "$ENABLE_PROPOSER" = "true" ]; then
ARGS="${ARGS} --l1.blobAllowed"
fi

if [ "$FALLBACK_TO_CALLDATA" == "true" ]; then
ARGS="${ARGS} --l1.fallbackToCalldata"
fi

if [ "$REVERT_PROTECTION" == "true" ]; then
ARGS="${ARGS} --l1.revertProtection"
fi

# TXMGR Settings
if [ -n "$TX_FEE_LIMIT_MULTIPLIER" ]; then
ARGS="${ARGS} --tx.feeLimitMultiplier ${TX_FEE_LIMIT_MULTIPLIER}"
Expand Down
7 changes: 0 additions & 7 deletions script/start-proposer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,6 @@ if [ "$ENABLE_PROPOSER" = "true" ]; then
ARGS="${ARGS} --l1.blobAllowed"
fi

if [ "$FALLBACK_TO_CALLDATA" == "true" ]; then
ARGS="${ARGS} --l1.fallbackToCalldata"
fi

if [ "$REVERT_PROTECTION" == "true" ]; then
ARGS="${ARGS} --l1.revertProtection"
fi

# TXMGR Settings
if [ -n "$TX_FEE_LIMIT_MULTIPLIER" ]; then
Expand Down
7 changes: 7 additions & 0 deletions script/start-prover-relayer-hekla.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ if [ "$ENABLE_PROVER" = "true" ]; then
if [ "$PROVE_UNASSIGNED_BLOCKS" = "true" ]; then
ARGS="${ARGS} --prover.proveUnassignedBlocks"
fi
if [ -n "$SGX_BATCH_SIZE" ]; then
ARGS="${ARGS} --prover.sgx.batchSize ${SGX_BATCH_SIZE}"
fi

if [ -n "$FORCE_BATCH_PROVING_INTERVAL" ]; then
ARGS="${ARGS} --prover.forceBatchProvingInterval ${FORCE_BATCH_PROVING_INTERVAL}"
fi

# TXMGR Settings
if [ -n "$TX_FEE_LIMIT_MULTIPLIER" ]; then
Expand Down
7 changes: 0 additions & 7 deletions script/start-prover-relayer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,6 @@ if [ "$ENABLE_PROVER" = "true" ]; then
ARGS="${ARGS} --prover.proveUnassignedBlocks"
fi

if [ -n "$SGX_BATCH_SIZE" ]; then
ARGS="${ARGS} --prover.sgx.batchSize ${SGX_BATCH_SIZE}"
fi

if [ -n "$FORCE_BATCH_PROVING_INTERVAL" ]; then
ARGS="${ARGS} --prover.forceBatchProvingInterval ${FORCE_BATCH_PROVING_INTERVAL}"
fi

# TXMGR Settings
if [ -n "$TX_FEE_LIMIT_MULTIPLIER" ]; then
Expand Down

0 comments on commit 3f4f1eb

Please sign in to comment.