Skip to content

Commit

Permalink
feat: remove unused configs (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha authored Jul 1, 2024
1 parent 1d0048c commit 073bf24
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ PROVER_CAPACITY=1
L1_PROVER_PRIVATE_KEY=
# Minimum accepted fee for accepting proving a block (in Gwei).
MIN_ACCEPTABLE_PROOF_FEE=1
# Amount to approve AssignmentHook + TaikoL1 contracts for TaikoToken usage. i.e 250 TAIKO = 250
# Amount to approve TaikoL1 contracts for TaikoToken usage. i.e 250 TAIKO = 250
TOKEN_ALLOWANCE=
# Minimum ETH balance (in ETH) a prover wants to keep.
MIN_ETH_BALANCE=
Expand Down
2 changes: 1 addition & 1 deletion .env.sample.hekla
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ PROVER_CAPACITY=1
L1_PROVER_PRIVATE_KEY=
# Minimum accepted fee for accepting proving a block (in Gwei).
MIN_ACCEPTABLE_PROOF_FEE=1
# Amount to approve AssignmentHook + TaikoL1 contracts for TaikoToken usage. i.e 250 TTKOh = 250
# Amount to approve TaikoL1 contracts for TaikoToken usage. i.e 250 TTKOh = 250
TOKEN_ALLOWANCE=
# Minimum ETH balance (in ETH) a prover wants to keep.
MIN_ETH_BALANCE=
Expand Down
3 changes: 0 additions & 3 deletions script/start-proposer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@ if [ "$ENABLE_PROPOSER" = "true" ]; then
ARGS="${ARGS} --tx.sendTimeout ${TX_SEND_TIMEOUT}"
fi

if [ -n "$ASSIGNMENT_HOOK_L1_ADDRESS" ]; then
ARGS="${ARGS} --assignmentHookAddress ${ASSIGNMENT_HOOK_L1_ADDRESS}"
fi

exec taiko-client proposer ${ARGS}
else
Expand Down
4 changes: 0 additions & 4 deletions script/start-prover-relayer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,6 @@ if [ "$ENABLE_PROVER" = "true" ]; then
ARGS="${ARGS} --tx.sendTimeout ${TX_SEND_TIMEOUT}"
fi

if [ -n "$ASSIGNMENT_HOOK_L1_ADDRESS" ]; then
ARGS="${ARGS} --assignmentHookAddress ${ASSIGNMENT_HOOK_L1_ADDRESS}"
fi

exec taiko-client prover ${ARGS}
else
echo "PROVER IS DISABLED"
Expand Down

0 comments on commit 073bf24

Please sign in to comment.