Skip to content

Fix base path for grandpa Keys #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 5, 2024
Merged
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
4 changes: 2 additions & 2 deletions pages/docs/node/systemd.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ rustup target add wasm32-unknown-unknown --toolchain nightly

```sh filename="Grandpa" copy

./target/release/tangle key insert --base-path /data/validator/<USERNAME> \
./target/release/tangle key insert --base-path <BASE_PATH> \
--chain tangle-testnet \
--scheme Ed25519 \
--suri <"12-MNEMONIC-PHARSE"> \
Expand All @@ -203,7 +203,7 @@ rustup target add wasm32-unknown-unknown --toolchain nightly
To ensure you have successfully generated the keys correctly run:

```sh filename="ls" copy
ls ~/data/validator/<USERNAME>/chains/tangle-testnet/keystore/
ls <BASE_PATH>/chains/tangle-testnet/keystore/
# You should see a some file(s) there, these are the keys.
```

Expand Down
Loading