Skip to content

Commit

Permalink
Remove key manager sanity check - saw a failure
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne committed Aug 13, 2023
1 parent c323c92 commit 5580693
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ethd
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,7 @@ keys() {

__owner_uid=$(id -u "${OWNER}")
if [ "${1:-}" = "import" ]; then
__i_haz_keys_service
#__i_haz_keys_service
shift
prep-keyimport "$@"
if [ ${__non_interactive} = 1 ]; then
Expand Down Expand Up @@ -1670,7 +1670,8 @@ keys() {
if [ "${failed}" -gt 0 ]; then
echo "Failed for ${failed} validators"
fi
elif [ "${1:-}" = "send-exit" ] && ! __i_haz_keys_service silent; then
#elif [ "${1:-}" = "send-exit" ] && ! __i_haz_keys_service silent; then
elif [ "${1:-}" = "send-exit" ]; then
var="CL_NODE"
CL_NODE=$(sed -n -e "s/^${var}=\(.*\)/\1/p" ".env" || true)
network_name="$(basename "$(pwd)")_default"
Expand All @@ -1694,7 +1695,7 @@ keys() {
--entrypoint "keymanager.sh" \
vc-utils:local /var/lib/lighthouse/nonesuch.txt consensus send-exit
else
__i_haz_keys_service
#__i_haz_keys_service
docompose run --rm -e OWNER_UID="${__owner_uid}" validator-keys "$@"
fi
}
Expand Down

0 comments on commit 5580693

Please sign in to comment.