Skip to content

Commit

Permalink
feat(proposer): remove unused BLOCK_BUILDER_TIP (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
YoGhurt111 authored Jul 3, 2024
1 parent 87474c5 commit f11e6be
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 12 deletions.
2 changes: 0 additions & 2 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ MAX_TIER_FEE_BUMPS=
PROVER_ENDPOINTS=http://taiko_client_prover_relayer:9876
# Whether to send EIP-4844 blob transactions when proposing blocks.
BLOB_ALLOWED=true
# Amount (in Gwei) that you want to tip the L1 Block Builder.
BLOCK_BUILDER_TIP=
# Comma-delimited local tx pool addresses you want to prioritize, useful to set your proposer to only propose blocks with your prover's transactions.
TXPOOL_LOCALS=
# Minimum Gas Tip for a transaction to accept for mempool (in wei).
Expand Down
2 changes: 0 additions & 2 deletions .env.sample.hekla
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ MAX_TIER_FEE_BUMPS=
PROVER_ENDPOINTS=http://taiko_client_prover_relayer:9876
# Whether to send EIP-4844 blob transactions when proposing blocks.
BLOB_ALLOWED=true
# Amount (in Gwei) that you want to tip the L1 Block Builder.
BLOCK_BUILDER_TIP=
# ProverSet Address: We highly recommend you consult the deploy a proverset guide and use separate EOAs for prover and proposer to prevent nonce issues.
PROVER_SET=

Expand Down
4 changes: 0 additions & 4 deletions script/start-proposer-hekla.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@ if [ "$ENABLE_PROPOSER" = "true" ]; then
ARGS="${ARGS} --tierFee.maxPriceBumps ${MAX_TIER_FEE_BUMPS}"
fi

if [ -n "$BLOCK_BUILDER_TIP" ]; then
ARGS="${ARGS} --l1.blockBuilderTip ${BLOCK_BUILDER_TIP}"
fi

if [ "$BLOB_ALLOWED" == "true" ]; then
ARGS="${ARGS} --l1.blobAllowed"
fi
Expand Down
4 changes: 0 additions & 4 deletions script/start-proposer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@ if [ "$ENABLE_PROPOSER" = "true" ]; then
ARGS="${ARGS} --tierFee.maxPriceBumps ${MAX_TIER_FEE_BUMPS}"
fi

if [ -n "$BLOCK_BUILDER_TIP" ]; then
ARGS="${ARGS} --l1.blockBuilderTip ${BLOCK_BUILDER_TIP}"
fi

if [ "$BLOB_ALLOWED" == "true" ]; then
ARGS="${ARGS} --l1.blobAllowed"
fi
Expand Down

0 comments on commit f11e6be

Please sign in to comment.