Skip to content

Commit

Permalink
Merge pull request #391 from yorickdowne/main
Browse files Browse the repository at this point in the history
Fix Lodestar validator startup path
  • Loading branch information
yorickdowne committed Jan 21, 2022
2 parents 37bfdc1 + c9773bb commit 1307d87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ethd
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ query_execution_client() {
EXECUTION_CLIENT=$(whiptail --notags --title "Select execution client" --menu \
"Which execution client do you want to run? Choose Custom for 3rd parties like Infura" 9 60 2 \
"NONE" "Custom" \
"nm.yml" "Nethermind (.NET)" \
"geth.yml" "Geth (Go)" 3>&1 1>&2 2>&3)
else
EXECUTION_CLIENT=$(whiptail --notags --title "Select execution client" --menu \
Expand Down
2 changes: 1 addition & 1 deletion lodestar-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ services:
entrypoint:
- node
- --max-old-space-size=8192
- /usr/app/packages/cli/bin/lodestar
- /usr/app/node_modules/.bin/lodestar
- validator
- --rootDir
- /var/lib/lodestar/validators
Expand Down
2 changes: 1 addition & 1 deletion lodestar-validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ services:
entrypoint:
- node
- --max-old-space-size=8192
- /usr/app/packages/cli/bin/lodestar
- /usr/app/node_modules/.bin/lodestar
- account
- validator
- voluntary-exit
Expand Down

0 comments on commit 1307d87

Please sign in to comment.