Rename remaining uses of fullnode to validator (#6476)

automerge
This commit is contained in:
Greg Fitzgerald
2019-10-21 21:21:21 -06:00
committed by Grimes
parent 18feba2431
commit 3b9b9b1500
12 changed files with 139 additions and 139 deletions

View File

@ -49,9 +49,9 @@ printNode() {
printf " %-25s | For logs run: $0 $ip tail -f solana/$nodeType.log\n" "$0 $ip"
}
echo Full nodes:
for ipAddress in "${fullnodeIpList[@]}"; do
printNode fullnode "$ipAddress"
echo Validators:
for ipAddress in "${validatorIpList[@]}"; do
printNode validator "$ipAddress"
done
echo
echo Clients:
@ -68,7 +68,7 @@ if [[ ${#blockstreamerIpList[@]} -eq 0 ]]; then
echo " None"
else
for ipAddress in "${blockstreamerIpList[@]}"; do
printNode fullnode "$ipAddress"
printNode validator "$ipAddress"
done
fi
echo
@ -77,7 +77,7 @@ if [[ ${#archiverIpList[@]} -eq 0 ]]; then
echo " None"
else
for ipAddress in "${archiverIpList[@]}"; do
printNode fullnode "$ipAddress"
printNode validator "$ipAddress"
done
fi
echo