Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladinlight committed Aug 2, 2023
1 parent ca94a70 commit b16d068
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go/coinstacks/osmosis/daemon/readiness.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ reference_validation() {
local nominal_block_height=$(( $best_block_height - $BLOCK_HEIGHT_TOLERANCE ))

if (( $latest_block_height >= $nominal_block_height )); then
echo "daemon is synced with $NUM_PEERS and within block height tolerance of reference node"
echo "daemon is synced with $NUM_PEERS peers, and within block height tolerance of reference node"
exit 0
fi

Expand Down
2 changes: 1 addition & 1 deletion node/coinstacks/bnbsmartchain/daemon/readiness.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ reference_validation() {
local nominal_block_number=$(( $best_block_number - $BLOCK_HEIGHT_TOLERANCE ))

if (( $current_block_number >= $nominal_block_number )); then
echo "daemon is synced with $PEER_COUNT and within block height tolerance of reference node"
echo "daemon is synced with $PEER_COUNT peers, and within block height tolerance of reference node"
exit 0
fi

Expand Down
2 changes: 1 addition & 1 deletion node/coinstacks/polygon/daemon/readiness.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ reference_validation() {
local nominal_block_number=$(( $best_block_number - $BLOCK_HEIGHT_TOLERANCE ))

if (( $current_block_number >= $nominal_block_number )); then
echo "daemon is synced with $PEER_COUNT and within block height tolerance of reference node"
echo "daemon is synced with $PEER_COUNT peers and within block height tolerance of reference node"
exit 0
fi

Expand Down

0 comments on commit b16d068

Please sign in to comment.