Skip to content
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

[Tutorial: Start a private network] Missing option --scheme in step to add the aura and grandpa secret key #685

Closed
sanitu opened this issue Dec 13, 2021 · 1 comment · Fixed by #866
Labels
bug 🐛 Something isn't working.

Comments

@sanitu
Copy link

sanitu commented Dec 13, 2021

Content request

The code to add the aura secret key in the Allow other participants to join section does not have the --scheme option. I get the error message that this option is required. So I had to add --scheme Sr25519 to the code to add the aura secret key and --scheme Ed25519 to the code to add the grandpa secret key.

Original code:

./target/release/node-template key insert --base-path /tmp/node02 \
--chain customSpecRaw.json \
--suri <second-participant-secret-seed> \
--password-interactive \
--key-type aura

Fixed code:

./target/release/node-template key insert --base-path /tmp/node02 \
--chain customSpecRaw.json \
--scheme Sr25519 \
--suri <second-participant-secret-seed> \
--password-interactive \
--key-type aura

Are you willing to help with this request?

Yes!

@sanitu sanitu added the new content 💡✍️ New Devhub content required. label Dec 13, 2021
@lisa-parity lisa-parity added bug 🐛 Something isn't working. and removed new content 💡✍️ New Devhub content required. labels Jan 6, 2022
@lisa-parity
Copy link
Contributor

This issue has been fixed. For reference, see this issue:
#714

@lisa-parity lisa-parity linked a pull request Mar 2, 2022 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🐛 Something isn't working.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants