Skip to content

Commit

Permalink
docs(node): change symbol (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerLamTd authored May 29, 2024
1 parent eebfffa commit e71c262
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ ENABLE_PROVER=false
SGX_RAIKO_HOST=
# How many provers you want to run concurrently.
PROVER_CAPACITY=1
# A L1 account private key (with a balance of TTKOh deposited on TaikoL1) which will be used to sign the bond for proving the block.
# A L1 account private key (with a balance of TAIKO deposited on TaikoL1) which will be used to sign the bond for proving the block.
# WARNING: only use a test account, pasting your private key in plain text here is not secure.
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 AssignmentHook + 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=
# Minimum Taiko token balance (in ether) a prover wants to keep. i.e 250 TTKOh = 250
MIN_TKO_BALANCE=
# Minimum Taiko token balance (in ether) a prover wants to keep. i.e 250 TAIKO = 250
MIN_TAIKO_BALANCE=
# Whether to prove unassigned blocks or not (blocks that have expired their proof window
# without the original prover submitting a proof.).
PROVE_UNASSIGNED_BLOCKS=false
Expand Down
4 changes: 2 additions & 2 deletions script/start-prover-relayer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ if [ "$ENABLE_PROVER" = "true" ]; then
ARGS="${ARGS} --prover.minEthBalance ${MIN_ETH_BALANCE}"
fi

if [ -n "$MIN_TKO_BALANCE" ]; then
ARGS="${ARGS} --prover.minTaikoTokenBalance ${MIN_TKO_BALANCE}"
if [ -n "$MIN_TAIKO_BALANCE" ]; then
ARGS="${ARGS} --prover.minTaikoTokenBalance ${MIN_TAIKO_BALANCE}"
fi

if [ "$PROVE_UNASSIGNED_BLOCKS" = "true" ]; then
Expand Down

0 comments on commit e71c262

Please sign in to comment.