Skip to content

Commit

Permalink
fix(prover,proposer): script fixes (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
brachsterX authored Jan 23, 2025
1 parent 5da07b3 commit 6d06a90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions script/start-proposer-hekla.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ if [ "$ENABLE_PROPOSER" = "true" ]; then
ARGS="${ARGS} --tx.numConfirmations ${TX_NUM_CONFIRMATIONS}"
fi

if [ -n "$TX_RECEIPT_QUERY" ]; then
ARGS="${ARGS} --tx.receiptQueryInterval ${TX_RECEIPT_QUERY}"
if [ -n "$TX_RECEIPT_QUERY_INTERVAL" ]; then
ARGS="${ARGS} --tx.receiptQueryInterval ${TX_RECEIPT_QUERY_INTERVAL}"
fi

if [ -n "$TX_RESUBMISSION" ]; then
Expand Down
2 changes: 1 addition & 1 deletion script/start-prover-relayer-hekla.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if [ "$ENABLE_PROVER" = "true" ]; then
fi

if [ -n "$TX_RECEIPT_QUERY_INTERVAL" ]; then
ARGS="${ARGS} --tx.receiptQueryInterval ${TX_RECEIPT_QUERY_INTEERVAL}"
ARGS="${ARGS} --tx.receiptQueryInterval ${TX_RECEIPT_QUERY_INTERVAL}"
fi

if [ -n "$TX_RESUBMISSION" ]; then
Expand Down

0 comments on commit 6d06a90

Please sign in to comment.