Skip to content

Commit

Permalink
Update vc-utils/keymanager.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne authored Sep 1, 2024
1 parent 4742bd6 commit f8c9d55
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vc-utils/keymanager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,9 @@ validator-count() {
__validator-list-call
remote_key_count=$(echo "$__result" | jq -r '.data | length')
echo "Remote Validator keys registered with ${__service}: $remote_key_count"
key_count=(key_count + remote_key_count)
if [ "${key_count}" -ne "${remote_key_count)" ]; then
echo "WARNING: The number of keys loaded into Web3signer and registered with the validator client differ."
echo "Please run \"./ethd keys register\""
fi
echo "Total keys: $key_count"
Expand Down

0 comments on commit f8c9d55

Please sign in to comment.