Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
Fix trimming of graffiti
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed Aug 9, 2024
1 parent cc56a30 commit 70718f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validator/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fi
# Handle Graffiti Character Limit
oLang=$LANG oLcAll=$LC_ALL
LANG=C LC_ALL=C
graffitiString=${GRAFFITI:0:32}
graffitiString=$(echo "$GRAFFITI" | cut -c 1-32)
LANG=$oLang LC_ALL=$oLcAll

exec node /usr/app/node_modules/.bin/lodestar \
Expand Down

0 comments on commit 70718f6

Please sign in to comment.