Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

FIX: nimbus import #305

Merged
merged 2 commits into from
Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion compose-examples/nimbus-only/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ services:
stereum-admin:
volumes:
- ./data/nimbus/beacon:/opt/app/beacon
- ./data/nimbus/validator/validators:/opt/app/validators
- ./data/nimbus/validator:/opt/app/validators
- ./data/nimbus/validator/secrets:/opt/app/secrets
- ./launchpad:/opt/app/validator_keys
<<: *logging

prometheus:
Expand Down
2 changes: 1 addition & 1 deletion nimbus_validator_import.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if {[ llength $validator_password ] == 0 } {
exit
}

spawn sh -c { sudo docker exec -it stereum_beacon_1 /opt/app/build/nimbus_beacon_node deposits import "/opt/app/validator_keys" --data-dir="/opt/app/validator" --network="prater" }
spawn sh -c { sudo docker exec -it stereum_beacon_1 /opt/app/build/nimbus_beacon_node deposits import "/opt/app/validator_keys" --data-dir="/opt/app/validators" --network="prater" }

expect {
"Please enter the password for decrypting" {
Expand Down